Skip to content

Install PostgreSQL

Bruno Perles edited this page Feb 19, 2024 · 8 revisions

Install postgresql

Type:

sudo apt-get -y install postgresql postgresql-contrib

Create a new user:

sudo su - postgres
createuser --superuser pia

Then change the pia password:

psql
\password pia

Additional documentation: