Skip to content

Instantly share code, notes, and snippets.

@bastengao
Last active July 1, 2016 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bastengao/4fbdaf49541a20a76ca5e1eb560a1962 to your computer and use it in GitHub Desktop.
Save bastengao/4fbdaf49541a20a76ca5e1eb560a1962 to your computer and use it in GitHub Desktop.
Init postgresql user
sudo su - postgres
psql

CREATE USER wwwuser WITH PASSWORD 'password';
CREATE DATABASE wwwuser OWNER wwwuser;
GRANT ALL PRIVILEGES ON DATABASE wwwuser to wwwuser;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment