Ubuntu install and tips

This project is maintained by nicolas-brousse

← Go home

PostgreSQL

config pgsql

Create user admin with superadmin role

su - postgres psql CREATE USER "admin"; ALTER USER "admin" WITH SUPERUSER;


← Go home