ubuntu-12.04 – postgresql无法在本地连接到服务器

前端之家收集整理的这篇文章主要介绍了ubuntu-12.04 – postgresql无法在本地连接到服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚使用以下命令在一个全新的Ubuntu 12.04 LTS服务器上安装了 postgresql 9.1:
sudo apt-get install postgresql libpq-dev
安装过程没有错误.基本上我应该能够连接到本地服务器,但是当我点击命令psql时,会出现以下错误

psql: could not connect to server: No such file or directory Is the
server running locally and accepting connections on Unix domain
socket “/var/run/postgresql/.s.PGsql.5432”?

我在线搜索了很多帖子,但无法解决问题(很多时候,我的服务器上不存在提到的目录).有谁能建议一些解决方案?谢谢 !

看来你没有成功安装postgresql.
请按照这里:
sudo add-apt-repository ppa:pitti/postgresql
sudo apt-get -y update
sudo apt-get purge postgresql* # ending * is important
sudo apt-get install postgresql libpq-dev

它会解决你的问题.

原文链接:https://www.f2er.com/ubuntu/347256.html

猜你在找的Ubuntu相关文章