Skip to content

Instantly share code, notes, and snippets.

@luanlmd
Created September 12, 2011 18:31
Show Gist options
  • Save luanlmd/1211999 to your computer and use it in GitHub Desktop.
Save luanlmd/1211999 to your computer and use it in GitHub Desktop.
Reset PostgreSQL root password
# paste line by line into the right console
sudo su postgres
psql -d template1
ALTER USER postgres WITH PASSWORD 'newpass';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment