客户端连接报错 :
could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host “192.168.121.128” and accepting
TCP/IP connections on port 5432?
修改配制文件 : vi /usr/local/pgsql/data/pg_hba.conf
“# IPv4 local connections下面添加
然后在这行上面添加“local pgsql all trust”,
在它下面的“host all all 127.0.0.1/32 md5”
下面添加一行,内容为“host all all 192.168.91.1/24 md5”
vi /usr/local/pgsql/data/postgresql.conf
然后启动数据库服务。
netstat -lantp #查看端口是否启动
ps aux | grep postgres #查看数据库服务是否启动
启动Postgres
#/usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile 2>&1 &