Skip to content

Instantly share code, notes, and snippets.

@raikel
Last active May 16, 2021 15:18
Show Gist options
  • Select an option

  • Save raikel/2bca6cc7b4985bf34d7e8548285eb820 to your computer and use it in GitHub Desktop.

Select an option

Save raikel/2bca6cc7b4985bf34d7e8548285eb820 to your computer and use it in GitHub Desktop.

Connect with command line

sudo -i -u postgres # change user 
psql # connect to postgresql

Commnands

# List all users
\du

# Change user password
ALTER USER username WITH PASSWORD 'newpassword';

# To allow an user create a database
ALTER USER username CREATEDB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment