pgadmin gives me the error: no password supplied

Change the password for role postgres:

sudo -u postgres psql postgres

alter user postgres with password 'postgres';

Try connect using “postgres” for both username and password.

Refer to: How to change PostgreSQL user password

Leave a Comment