PostgreSQL 13 Cluster auf PostgreSQL 14 aktualisieren
Posted by Guenny onDie neue Version 14 der Datenbanksoftware ist bereits einige Tage verfügbar.
Es gibt dazu einen ausführlichen Release Log, den ihr euch gerne zu Gemüte führen dürft.
Installation und Update auf PostgreSQL 14 unter Debian/Ubuntu
# 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. sudo apt-get -y install postgresql-14 # Sicherung erstellen sudo su postgres pg_dumpall > Sicherung exit #Vorhandene Cluster anzeigen pg_lsclusters #Neues Cluster anhalten sudo pg_dropcluster --stop 14 main #Vorhandenes Cluster aktualisieren sudo pg_upgradecluster 13 main
Nachdem die Datenbanken aktualisiert und getestet wurden, kann die alte Version gelöscht werden.
sudo pg_ctlcluster 14 main status
pg_ctl: server is running (PID: 60700)
/usr/lib/postgresql/14/bin/postgres "-D" "/var/lib/postgresql/14/main" "-c" "config_file=/etc/postgresql/14/main/postgresql.conf"
sudo pg_isready
/var/run/postgresql:5433 - accepting connections
sudo pg_dropcluster 13 main
Trackbacks
Trackback specific URI for this entryThis link is not meant to be clicked. It contains the trackback URI for this entry. You can use this URI to send ping- & trackbacks from your own blog to this entry. To copy the link, right click and select "Copy Shortcut" in Internet Explorer or "Copy Link Location" in Mozilla.
No Trackbacks
Comments
Display comments as Linear | ThreadedNo comments