查找运行它的PostgreSQL服务器主机名

查找运行它的PostgreSQL服务器主机名

本文介绍了查找运行它的PostgreSQL服务器主机名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以找到运行PostgreSQL服务器的主机?

Is it possible to find the host on which the PostgreSQL Server runs ?

推荐答案

使用 SELECT inet_server_addr(),但是如果通过Unix域套接字建立连接,它将返回 NULL 。还有 inet_server_port()返回端口服务器正在监听。

Use SELECT inet_server_addr(), but it'll return NULL if connection is established via Unix-domain socket. And there's inet_server_port() which returns the port server is listening.

这篇关于查找运行它的PostgreSQL服务器主机名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 15:58