Articles → POSTGRESQL → Manage users in postgres database using psql
Manage users in postgres database using psql
Get the list of users on a database
Click to Enlarge
Create a new user
Click to Enlarge
create user <user_name> with password ‘<password>’;
Grant permission
grant all on <database_name> to <user>