sabato 5 dicembre 2020

Installazione PostgreSQL e PGAdmin su Ubuntu + reset password user postgres

Di seguito i comandi da terminale per installare postgres nella versione che preferite, secondo le vostre esigenze:

# Create the file repository configuration:
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'

# Import the repository signing key:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

# Update the package lists:
sudo apt-get update

# Install the latest version of PostgreSQL.
# If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql':
sudo apt-get -y install postgresql

Ora installiamo PGAdmin, per la gestione del server da GUI:

#
# Setup the repository
#

# Install the public key for the repository (if not done previously):
curl https://www.pgadmin.org/static/packages_pgadmin_org.pub | sudo apt-key add

# Create the repository configuration file:
sudo sh -c 'echo "deb https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/$(lsb_release -cs) pgadmin4 main" > /etc/apt/sources.list.d/pgadmin4.list && apt update'

#
# Install pgAdmin
#

# Install for both desktop and web modes:
sudo apt install pgadmin4

# Install for desktop mode only:
sudo apt install pgadmin4-desktop

# Install for web mode only:
sudo apt install pgadmin4-web

# Configure the webserver, if you installed pgadmin4-web:
sudo /usr/pgadmin4/bin/setup-web.sh

La maggior parte delle volte, alla prima installazione di postgres si hanno problemi con la password per l'utente di default postgres. Di seguito i comandi da terminale per resettarla:

#Apriamo la CLI di postgres con il seguente comando:
sudo -u postgres psql template1

#Ora diamo il seguente comando per resettare la password (sostituire 'newPassword' con la password che preferite, si consiglia 'postgres' per gli ambienti locali di sviluppo):
ALTER USER postgres PASSWORD 'newPassword';

#Ctrl+D per uscire dalla CLI