標籤:color os ar sp 問題 log ad ef bs
首先 查看
1.用 ps -ef|grep postgres 查看進程是否已經啟動;正常情況如下:
postgres 1445 1 0 07:54 ? 00:00:00 /usr/bin/postgres -D /var/lib/pgsql/data -p 5432
postgres 1853 1445 0 07:54 ? 00:00:00 postgres: logger process
postgres 2075 1445 0 07:54 ? 00:00:00 postgres: checkpointer process
postgres 2076 1445 0 07:54 ? 00:00:00 postgres: writer process
postgres 2077 1445 0 07:54 ? 00:00:00 postgres: wal writer process
postgres 2078 1445 0 07:54 ? 00:00:00 postgres: autovacuum launcher process
postgres 2079 1445 0 07:54 ? 00:00:00 postgres: stats collector process
root 7135 3247 0 09:08 pts/0 00:00:00 grep --color=auto postgres
2.用netstat -tpnl|grep 5432查看連接埠是否被監聽;正常情況如下:
tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN 1445/postgres
tcp6 0 0 :::5432 :::* LISTEN 1445/postgres
3.用iptables -L -n|grep 5432查看連接埠是否被允許;正常情況如下:
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:5432
可以用telnet host_ip 5432進行測試是否能串連。
只要上3步都正常pqAdmin就能夠串連。
pgadmin 無法串連 centos7 postgresql 問題