DB

【psql】connections on Unix domain socket “/var/run/postgresql/.s.PGSQL.5432”?

dockerにpostgresを入れて、いざ入ろうとすると 「 psql: error: could not connect to server: No such file or directory Is the server runnin...
DB

【DB2】-330 [IBM][System i Access ODBC ドライバー][DB2 for i5/OS]SQL0330 – 文字変換を実行することができない。

DB2でインサートをしようとした所 「-330 SQL0330 - 文字変換を実行することができない。」 のエラーが出た?? よくやる作業だったのだが、このエラーは初めて 先方からもらったデータに不備があると予想・・・ 結果、数字の1が本来...
docker

【docker】Error: Failed to download metadata for repo ‘pgdg-common’: repomd.xml GPG signature verification error: Bad GPG signature

dockerでpostgresをインストールしようとしたら Error: Failed to download metadata for repo 'pgdg-common': repomd.xml GPG signature verifi...
docker

【docker】dockerでlocalhostがForbiddenになる

dockerにalmalinuxを建てて、httpdを入れて、もちろんポートは ports: - 80:80 で設定して、いざブラウザでアクセスすると 「Forbidden You don't have permission to acce...
docker

【docker】アパッチを起動するとエラー??

dockerでalmalinux入れて、httpd落として、さあ作業しようと思ったら なぜか、動いていない。。? あれと思い確認 # systemctl status httpd × httpd.service - The Apache H...
docker

【docker】System has not been booted with systemd as init system (PID 1). Can’t operate. Failed to connect to bus: Host is down

dockerの中でhttpdを入れてstatusを見ようと思ったら System has not been booted with systemd as init system (PID 1). Can't operate. Failed ...
法人設立

e-TAXで法人の確定申告をする

法人化してはや10年。 毎年分厚い封筒に20枚くらいの確定申告所を入れて郵送していたけど。。。 そんな日々とはおさらばよ!! 今年から電子申請する!!!! あははははは ・・・ と笑っていたのですが、、、 etaxの電子申請が全然わからなす...
ANDROID

【linux】エックスサーバーのvpsにApacheを入れてブラウザから見れるように

したい! サーバー苦手なので、勉強ようにvps借りてみた。 まっさらなサーバー! 早速まずはApache入れる
DB

【postgresql】インストールしたのにpostgresユーザーがいない

ポスグレの勉強中 centosにポスグレ入れてみようと思って yum install postgres をして、postgresユーザーに切り替えようと思ったのになぜかエラーになる? # su postgres su: user postg...
git

【GIT】既にあるファイルを管理対象外にしたい

wordpressをローカルとネット上でgit管理しているのだが、wp-config.phpだけgitの対象外にしたい。 まずは.gitignoreに追加 .gitignore wp-config.php ただ、既にgit管理されているので...