wikiti
4/11/2017 - 3:16 PM

Create a PostgreSQL database user

Create a PostgreSQL database user

# Run the following commands
sudo su postgres
psql

# Then:
CREATE USER your_user PASSWORD 'your_password' LOGIN SUPERUSER CREATEDB;
\quit