Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个在 port 上运行的已安装 pgsql 实例1486。我想将此端口更改为5433,我应该如何进行呢?
1486
5433
postgresql.conf您的文件中应该有一行内容:
postgresql.conf
port = 1486
改变那个。
该文件的位置可能因您的安装选项而异。在基于 Debian 的发行版上,它是/etc/postgresql/8.3/main/
/etc/postgresql/8.3/main/
在 Windows 上是C:\Program Files\PostgreSQL\9.3\data
C:\Program Files\PostgreSQL\9.3\data
不要忘记sudo service postgresql restart让更改生效。
sudo service postgresql restart
您还可以在启动时更改端口:
$ pg_ctl -o "-F -p 5433" start
或者
$ postgres -p 5433
更多关于这在手册中。