postgresql 出现 Is the server running locally and accepting connections on Unix domain socket "/var/r

来源:互联网 发布:netbean php 编辑:程序博客网 时间:2024/06/10 01:26

postgresql 出现 Is the server running locally and accepting connections on Unix domain socket “/var/run/postgresql/.s.PGSQL.5432”?

原因:

有可能/var/lib/postgresql 文件夹权限被无意中更改

解决方案1:

sudo chown -R postgres:postgres /var/lib/postgresql

来源:http://ubuntuforums.org/showthread.php?t=2257724

解决方案2:

原因解释:http://askubuntu.com/questions/50621/cannot-connect-to-postgresql-on-port-5432

sudo ln -s /tmp/.s.PGSQL.5432 /var/run/postgresql/.s.PGSQL.5432 #创建软连接

sudo vim /etc/postgresql/9.4/main/pg_hba.conf #修改配置文件

将 local all postgres peer 中的peer

改成

local all postgres turst

解决方案来源:http://stackoverflow.com/questions/28925848/error-with-postgresql-datababse-is-the-server-running-locally-and-accepting-co

netstat -nlp | grep 5432 ##查看是否成功

推荐第二种,第一种成功一次 ,但第二天还是出现同样的问题。

0 0