postgresql

sudo apt-get install postgresql

sudo su – postgres

psql

CREATE DATABASE yourdbname;

CREATE USER youruser WITH ENCRYPTED PASSWORD ‘yourpass’;
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;