有没有办法列出 PostgreSQL 服务器?
目前我正在将客户端写入 PostgreSQL 服务器。我想列出本地网络中运行 PostgreSQL 服务器的服务器的详细信息(IP 地址和端口号)。 libpq 或 libpqxx 中有一些方法吗?
问候
德瓦拉古达
Currently I am writing client to PostgreSQL servers. I want to list the details (ip address and port number) of the servers that is running PostgreSQL servers in the local network. Is there some methods in libpq or libpqxx ?
Regards
Devara Gudda
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PostgreSQL 支持“bonjour”,如果您的网络支持它并且 PostgreSQL 是用它构建的。
如果你没有,那么答案是否定的。最接近的方法是对 5432 上的网络进行端口扫描 - 但这仍然无法捕获其他端口上的侦听器。
PostgreSQL has support for "bonjour", if your network supports it and PostgreSQL is built with it.
If you don't have that, then the answer is no. The closest you can get is to portscan the network on 5432 - but that still won't catch listeners on other ports.