meta data for this page
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:databases:psql:upgradeto15 [2024/10/13 19:28] – created niziak | linux:databases:psql:upgradeto15 [2025/05/20 07:37] (current) – niziak | ||
---|---|---|---|
Line 2: | Line 2: | ||
During updating to Debian 12, installer left '' | During updating to Debian 12, installer left '' | ||
- | |||
<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 | ||
+ | |||
</ | </ | ||