This article is half-done without your Comment! *** Please share your thoughts via Comment ***
In this post, I am sharing basic commands to change the PostgreSQL database user password in Linux.
I would like to share this kind commands and scripts because this is very common and day to day exercise for a Database Administrator.
In the PostgreSQL, we have also one pg_hba.conf file.
pg_hba.conf is a configuration file which is controlled Client Authentication.
This file automatically installed when the data directory is initialized.
If you want to login without password, you can put “peer” or “trust” instead of md5 in this file.
like,
1 |
local all postgres peer |
But for the security purpose, we should put md5.
Change database password using ALTER:
First login:
1 |
sudo -u user_name psql database_name |
ALTER Command:
1 |
ALTER USER user_name WITH PASSWORD 'MyNew_Password'; |
Change database password using \password:
First login:
1 |
root=# sudo -u user_name psql database_name |
Using \password:
1 2 3 4 |
root=# \password user_name Enter new password: *** Enter it again: *** |