如何将postgresql的默认监听端口5432更改为其他数字?另一个问题,我需要做什么步骤来允许使用python pyscopg 2远程r/w访问数据库?
jvlzgdj91#
只需更改文件postgresql.conf中的设置(可以在data目录中找到):
postgresql.conf
data
port = 5433 # (change requires restart)
字符串远程访问可以通过更改pg_hba.conf来实现,只需添加IP地址即可。您还需要编辑postgresql.conf:
listen_addresses = '*'
型
1条答案
按热度按时间jvlzgdj91#
只需更改文件
postgresql.conf
中的设置(可以在data
目录中找到):字符串
远程访问可以通过更改pg_hba.conf来实现,只需添加IP地址即可。您还需要编辑
postgresql.conf
:型