meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
linux:databases:psql:upgradeto15 [2024/10/13 19:28] – created niziaklinux:databases:psql:upgradeto15 [2025/05/20 07:37] (current) niziak
Line 2: Line 2:
  
 During updating to Debian 12, installer left ''postgresql-13'' with info to manually upgrade. During updating to Debian 12, installer left ''postgresql-13'' with info to manually upgrade.
- 
 <code bash> <code bash>
 apt install postgresql-15 apt install postgresql-15
 pg_dropcluster --stop 15 main pg_dropcluster --stop 15 main
 pg_upgradecluster 13 main pg_upgradecluster 13 main
 +# OR if upgrading from Debian 10
 +# pg_upgradecluster 11 main
 +
 +Success. Please check that the upgraded cluster works. If it does,
 +you can remove the old cluster with
 +    pg_dropcluster 11 main
 +
 </code> </code>