![postgres 中的 5433 端口是什么](https://linux22.com/image/1199186/postgres%20%E4%B8%AD%E7%9A%84%205433%20%E7%AB%AF%E5%8F%A3%E6%98%AF%E4%BB%80%E4%B9%88.png)
默认PostgreSQL
端口是5432
,但是我在Ubuntu中发现两个端口,一个是5432
,另一个是5433
。
# ss -nlapt | grep postgres
LISTEN 0 200 127.0.0.1:5432 0.0.0.0:* users:(("postgres",pid=1862,fd=6))
LISTEN 0 224 127.0.0.1:5433 0.0.0.0:* users:(("postgres",pid=1864,fd=3))
我可以5432
使用连接到pgadmin
。但我无法5433
使用同一用户连接到。
我不知道可以使用什么命令来调试这个端口5433
。
这个端口是什么5433
以及如何调试这个端口来检查它是什么?