I was trying to connect to the PostgresQL database like the next:
[pznoleg@s7]:<~>$ psql -h pgsql7.serv00.com
Password for user pznoleg:
psql: error: connection to server at "pgsql7.serv00.com" (85.194.244.91), port 5432 failed: fe_sendauth: no password supplied
[pznoleg@s7]:<~>$ psql -h pgsql7.serv00.com
Password for user pznoleg:
psql: error: connection to server at "pgsql7.serv00.com" (85.194.244.91), port 5432 failed: FATAL: password authentication failed for user "pznoleg"
I was using to connect to postgresql server with the password which I got in the email, but this password does not actual.
Any recommendations will appreciate.
Thanks a lot,
Oleg
How to connect to the PostgresQL database?
goodbyespy First you need to create the user/db pair: https://docs.serv00.com/PostgreSQL/
Then look at manual: man psql
to obtain the correct command for using your user and database with psql
.