brew info postgresql@<your_version> 我的计算机上的位置是/usr/local/opt/postgresql@14/share/postgresql@14
2.导航到此处并打开postgresql.conf
#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
# - Connection Settings -
listen_addresses = 'localhost' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost'; use '*' for all
# (change requires restart)
port = 5555 # (change requires restart)
2条答案
按热度按时间qf9go6mv1#
如果安装了
pg_ctl
(应该安装了--但是您可以使用which pg_ctl
进行检查),您可以在启动Postgres服务器时使用它来指定端口:Documentation
vyu0f0g12#
要进行永久修复,您可以更改配置文件:
1.确定brew安装Postgres的位置
brew info postgresql@<your_version>
我的计算机上的位置是
/usr/local/opt/postgresql@14/share/postgresql@14
2.导航到此处并打开postgresql.conf
然后可以在重新启动postgresql之前设置端口和地址。
3.重新启动postgresql
brew services restart postgresql