About setting up PostgreSQL on Arch Linux.
postgresql
package.sudo pacman -S postgresql
postgres
user.sudo -i -u postgres
[postgres@archlinux ~]$ psql
postgres=> initdb --locale=C.UTF-8 --encoding=UTF8 -D '/var/lib/postgres/data'
postgresql
service.sudo systemctl enable postgresql
sudo systemctl start postgresql
psql
and create a new database with your user.sudo -u postgres psql
postgres=# create database MYUSER;
postgres=# create user MYUSER with password 'MYPASSWORD';
postgres=# grant all privileges on database MYUSER to MYUSER;