Skip to content

Instantly share code, notes, and snippets.

@bsnux
Created November 15, 2013 14:24
Show Gist options
  • Save bsnux/7485104 to your computer and use it in GitHub Desktop.
Save bsnux/7485104 to your computer and use it in GitHub Desktop.
Create PostgreSQL user and DB
#!/bin/bash
# Next command will ask you for entering username/password
sudo -u postgres createuser -P
sudo -u postgres createdb mydb -O myuser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment