postgresql--报错1

# ubuntu == 18.4
sudo apt-get install postgresql postgresql-contrib
#succeed install
sudo su postgresql
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.5433”?

解决办法如下
报错信息提示:大概是询问与数据库的通信端口5433对不对?数据库是否运行在localhost上?
cat /etc/postgresql/10/main/postgresql.conf 查看postgresql的配置文件发现与localhost的通信端口是5433
所以配置文件没有错。考虑到apt安装成功后就会运行postgresql,那使用该配置文件应该不会错啊!
我就重新启动了一下postgresql服务器,然后问题就解决了~
sudo /etc/init.d/postgresql restart

你可能感兴趣的:(linux,database,postgresql,服务器,linux)