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

时间:2010-06-03 08:26:20

标签: postgresql port

如何将postgresql的默认侦听端口5432更改为另一个号码?

另一个问题,

我可以采取哪些步骤来允许使用python pyscopg2远程访问数据库?

1 个答案:

答案 0 :(得分:40)

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

port = 5433             # (change requires restart)

可以通过更改pg_hba.conf来提供远程访问,只需添加ip-address即可。您还必须编辑postgresql.conf:

listen_addresses = '*'