pgadmin gives me the error: no password supplied

前端 未结 4 1848
南笙
南笙 2020-12-30 23:49

I\'ve installed postgresql 9.2 on linux (kubuntu) and the last version of pgadmin3, but when I connect them I have this error:

An error has occurred: Error connectin

4条回答
  •  执笔经年
    2020-12-31 00:08

    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

提交回复
热议问题