gpt4 book ai didi

postgresql - Perl DBI : connect to REMOTE PostgreSQL db still complains about local socket file

转载 作者:行者123 更新时间:2023-11-29 12:36:14 25 4
gpt4 key购买 nike

我正在尝试使用 DBIx::Class 连接到一个远程 PostgreSQL 数据库。我的连接字符串:"DBI:Pg:database=asterisk:host=example.com:hostaddr=10.10.10.10:port=5432", $user, $pass

example.com 确实解析为“10.10.10.10”,将两者都交换为 IP 或只有 host=IP 所有结果都是

 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 /usr/local/share/perl/5.10.1/DBIx/Class/Storage/DBI.pm line 1489. at db-access.pl line 26

在这个 debian 上我没有或不需要 postgresql,但是我有 libdbd-pg-perlDBI->available_drivers 说我有 Pg(在我安装库之前没有)。

我怎样才能知道它正在尝试做什么以及我是否需要安装其他任何东西?有问题的服务器配置为允许来自 10.100.* 地址的连接,运行此代码的机器所在的地址,我可以使用我的工作站(同一网络)上的 PSequel 和 pgAdmin 等工具连接到它有问题的数据库用户。

最佳答案

"DBI:Pg:database=asterisk:host=example.com:hostaddr=10.10.10.10:port=5432"

应该是:

"DBI:Pg:database=asterisk;host=example.com;hostaddr=10.10.10.10;port=5432"

只有前两个分隔符是冒号。其余的应该是分号。

关于postgresql - Perl DBI : connect to REMOTE PostgreSQL db still complains about local socket file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40631351/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com