Skip to content

Instantly share code, notes, and snippets.

@michaelstephens
Last active November 15, 2017 23:11
Show Gist options
  • Save michaelstephens/bacf19caa21e66c64ae6 to your computer and use it in GitHub Desktop.
Save michaelstephens/bacf19caa21e66c64ae6 to your computer and use it in GitHub Desktop.
adduser [PSQL USER]
sudo -u postgres -i
psql
# OR
psql postgres
CREATE USER [PSQL USER] WITH PASSWORD '[PASSWORD]';
CREATE DATABASE [PSQL DB];
GRANT ALL PRIVILEGES ON DATABASE [PSQL DB] to [PSQL USER];
\q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment