我可以使用PHP和本地使用Psql进行良好连接,但Perl没有。
my $dbh = DBI->connect("DBI:Pg:dbname=mydb,host=localhost:5432","user","pass",{'RaiseError' => 1});
我认为错误是因为我的套接字是在tmp:
postgres@host/opt/psql/bin $ netstat -an | grep 5432
tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN
tcp6 0 0 :::5432 :::* LISTEN
unix 2 [ ACC ] STREAM LISTENING 24728255 /tmp/.s.PGSQL.5432
unix 3 [ ] STREAM CONNECTED 24729004 /tmp/.s.PGSQL.5432
当我运行我的简单perl脚本时,它似乎在/ var / run:
中查找./test.pl
DBI connect('dbname=mydb','user',...) failed: 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"? at ./test.pl line 6
我试图简单地创建一个符号链接,但这似乎不起作用:
sudo ln -s /tmp/.s.PGSQL.5432 /var/run/postgresql/.s.PGSQL.5432
ln: failed to create symbolic link `/var/run/postgresql/.s.PGSQL.5432': No such file or directory
其他一些简单的东西: pg_hba.conf信任所有localhost连接以及我的子网连接。
postgresql.conf具有以下内容:
listen_addresses ='*'
答案 0 :(得分:3)
请参阅http://www.postgresql.org/docs/9.2/static/libpq-connect.html#LIBPQ-CONNECT-HOST:
宿主
要连接的主机的名称。如果以斜杠开头,则指定 Unix域通信而不是TCP / IP通信;价值 是存储套接字文件的目录的名称。该 未指定主机时的默认行为是连接到a / tmp中的Unix域套接字(或指定的任何套接字目录) 当PostgreSQL建成时)。在没有Unix域套接字的机器上, 默认是连接到localhost。
因此,具有host=/tmp
的连接字符串应该使您的Pg客户端看起来正确(无论如何应该是默认值)。