无法连接到服务器:没有这样的文件或目录是服务器 在本地运行并接受Unix域套接字上的连接 “ /var/run/postgresql/.s.PGSQL.5432”?
我已卸载并安装了postgresql,但对我没有任何作用。
$ sudo service postgresql start
* Starting PostgreSQL 10 database server
* Failed to issue method call: Unit postgresql@10-main.service failed to load: No such file or directory. See system logs and 'systemctl status postgresql@10-main.service' for details.
systemctl status postgresql
Failed to issue method call: No such interface 'org.freedesktop.DBus.Properties' on object at path /org/freedesktop/systemd1/unit/postgresql_2eservice
$ psql -V
psql (PostgreSQL) 10.4 (Ubuntu 10.4-2.pgdg14.04+1)
答案 0 :(得分:1)
这个问题/var/run/postgresql/.s.PGSQL.5432
与许可有关,
您是否更改了数据库目录? 如果是,那么您需要授予对postgres的写入和读取权限
sudo chown -R postgres:postgres <directory_path>
or
sudo chmod -R 777 <directory_path>
如果您无法使用远程访问,请在pg_config
上将此行listen_addresses = 'localhost'
修改为listen_addresses = '*'
,然后在pg_hba.conf
中插入以下行:
host all all 0.0.0.0/0 md5