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

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 ##查看是否成功

推薦第二種,第一種成功一次 ,但第二天還是出現同樣的問題。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章