我正在从Debian 8.7终端运行psql
,但是无法弄清楚为什么需要-h
标志才能执行。例如,如果我在终端上运行psql -U postgres
,则会收到以下错误:
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"?
但是,当我添加主机标志时,我可以连接:
psql -U postgres -h localhost
psql (9.4.10, server 9.6.2)
WARNING: psql major version 9.4, server major version 9.6.
Some psql features might not work.
Type "help" for help.
postgres=#
是什么原因?
答案 0 :(得分:2)
客户端和服务器对UNIX套接字的创建目录似乎有不同的想法。
连接到数据库后,运行
SHOW unix_socket_directories;
这将告诉您可以在哪个目录(或多个目录)中找到UNIX套接字。
您可以将目录名与-h
选项一起使用,或者将环境变量PGHOST
设置为本地连接的名字。
例如,如果您得到的结果是/tmp
(出厂默认设置),则可以使用
psql -h /tmp -U postgres