Upgrade to version 4.3.1 fails because of postgresql version #19566
Answered
by
markkuleinio
GeertReijnders
asked this question in
Help Wanted!
-
i want to upgrade my netbox server from version 4.1.10 to version 4.3.1. How can I upgrade my Postgresql version from 12 to a newer version. We run our Netbox Environment on Ubuntu 22.04.5. The upgrade script doesn't do this automatically. |
Beta Was this translation helpful? Give feedback.
Answered by
markkuleinio
May 23, 2025
Replies: 2 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
This is how I did it in Debian last time I upgraded it: https://majornetwork.net/2024/04/postgresql-upgrades-on-debian-linux/ Copy:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
GeertReijnders
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is how I did it in Debian last time I upgraded it:
https://majornetwork.net/2024/04/postgresql-upgrades-on-debian-linux/
Copy:
[email protected]
and[email protected]
are running (both TCP ports 5432 and 5433 are shown listening withss -ntl
command)sudo pg_dropcluster --stop 15 main
sudo pg_upgradecluster 13 main
dpkg -l postgresql\*
for any old version packages installe…