PostgreSQL データベースで PGadmin4 を起動しようとしていますが、 にアクセスするhttp://localhost/pgadmin4
と に着陸し続け
127.0.0.1 refused to connect
ます。
Postgresql の後、データベースを起動したところ、サーバーは動作しているようです。
~ sudo systemctl status postgresql
● postgresql.service - PostgreSQL RDBMS
Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor pr>
Active: active (exited) since Wed 2021-05-05 17:44:13 CEST; 11min ago
Process: 8826 ExecStart=/bin/true (code=exited, status=0/SUCCESS)
Main PID: 8826 (code=exited, status=0/SUCCESS)
mai 05 17:44:13 hysterio-Zephyrus-G-GU502DU-GA502DU systemd[1]: Starting Postgr>
mai 05 17:44:13 hysterio-Zephyrus-G-GU502DU-GA502DU systemd[1]: Finished Postgr>
標準ポート 5432 は正しいプロセスでリッスンしています:
sudo lsof -i tcp:5432
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
postgres 10886 postgres 5u IPv4 134729 0t0 TCP *:postgresql (LISTEN)
postgres 10886 postgres 6u IPv6 134730 0t0 TCP *:postgresql (LISTEN)
PGadmin4 のインストールには、Apache Web サーバーのインストールが必要でしたが、正しく実行されました。
We can now configure the Apache Web server for you. This involves enabling the wsgi module and
configuring the pgAdmin 4 application to mount at /pgadmin4. Do you wish to continue (y/n)? y
The Apache web server is running and must be restarted for the pgAdmin 4 installation to complete. Continue (y/n)?
Apache successfully restarted. You can now start using pgAdmin 4 in web mode at http://127.0.0.1/pgadmin4
pg_hba.conf ファイルと postgresql.conf ファイルを編集して、データベースがローカルホスト (127.0.0.1) で 5432 をリッスンしていることを確認しようとしましたが、何もしていません。
何か案は?