Hi @itGirl27! It sounds like you might be encountering a connection issue with the new Postgres setup. I’d recommend double-checking your database configuration in config.json, especially to ensure your connection string details match your Postgres setup. You might also find our MySQL to PostgreSQL documentation helpful in verifying the settings. Let us know how it goes!
Did you check that port 5432 is open and accessible? Like this:
netstat -tulpen | grep 5432
# and
telnet localhost 5432
ncat is also possible instead of telnet, though.
I guess, the postgres service is running on the same machine as the mattermost service?
If not, you can’t use “localhost”. Use the hostname or IP of the postgres server instead.
Just curious: the DataSource mentioned in the error message doesn’t contain “postgres://” - is this part of your config in config.json? Could you please post the corresponding lines of SqlSettings?
Good that you were able to resolve it. But this is still not the full error message. Notice that your last line is ending with =disable>. It should end with a } indicating end of the JSON log.
I think once you get the full error message, the fact that it’s trying with the incorrect driver should be clear.