如何在Windows中更改postgresql监听端口?

发布于 2024-09-03 20:03:06 字数 105 浏览 6 评论 0原文

如何将postgresql的默认监听端口5432更改为其他号码?

另一个问题,

我需要执行哪些步骤才能允许使用 python pyscopg2 远程读写访问数据库?

How do i change the default listening port 5432 of postgresql to another number?

Another question,

What steps do i have do to allow remote r/w access to the database using python pyscopg2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

大海や 2024-09-10 20:03:06

只需更改文件 postgresql.conf 中的设置(可以在 data 目录中找到):

port = 5433             # (change requires restart)

可以通过更改 pg_hba.conf,只需添加 IP 地址即可。您还必须编辑 postgresql.conf

listen_addresses = '*'

Just change the setting in the file postgresql.conf (can be found in the data directory):

port = 5433             # (change requires restart)

Remote access can be given by changing pg_hba.conf, just add the ip-address. You also have to edit postgresql.conf:

listen_addresses = '*'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文