我有PSQL运行,并试图得到一个perl应用程序连接到数据库。是否有命令来查找数据库正在运行的当前端口和主机?


当前回答

要找到端口号,可以运行这个命令(假设您在localhost上)

select setting from pg_settings where name='port';

其他回答

从终端你可以做:

\conninfo

我建议阅读一份关于他们所有命令的详尽列表的文档:

\?

postgresql端口在postgresql.conf文件中定义。

对我来说,Ubuntu 14.04的目录是:/etc/postgresql/9.3/main/postgresql.conf

里面有一行字:

port = 5432

修改该数字需要重新启动postgresql才能生效。

SELECT *
FROM pg_settings
WHERE name = 'port';

要找到端口号,可以运行这个命令(假设您在localhost上)

select setting from pg_settings where name='port';

我使用这样的解决方案。不需要插件。不需要临时表。仅适用于unix。

select pg_read_file('/etc/hostname') as hostname, setting as port from pg_settings where name='port';