Notifications
Clear all
Topic starter
04/03/2024 11:32
My Postgres version 16 on ubuntu 22.04 is running on port 5433.
# lsof -i :5433
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
postgres 1505 postgres 6u IPv4 25465 0t0 TCP *:5433 (LISTEN)
postgres 1505 postgres 7u IPv6 25466 0t0 TCP *:5433 (LISTEN)
In logfiles I can see carbonio wanting to connect to port 5432 and lots of authentications fails.
In file /etc/postgresql/16/main/postgresql.conf I have
port = 5432 # (change requires restart)
Should I run postgres on port 5432 of 5433 ?
And if it should be 5432, why isnt it running on 5432 since this is what I have in postgresql.conf?
Topic starter
04/03/2024 12:19
Ok, I solved this one. I changed the reset_val back to 5432 port and this is ok now.