Created
December 6, 2012 06:55
-
-
Save ivanvanderbyl/4222308 to your computer and use it in GitHub Desktop.
Postgres 9.1 to 9.2 upgrade guide for Ubuntu 12.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository ppa:pitti/postgresql | |
sudo apt-get update | |
sudo apt-get install postgresql-9.2 postgresql-server-dev-9.2 postgresql-contrib-9.2 | |
sudo su -l postgres | |
psql -d template1 -p 5433 | |
CREATE EXTENSION IF NOT EXISTS hstore; | |
CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | |
service postgresql stop | |
/usr/lib/postgresql/9.2/bin/pg_upgrade -b /usr/lib/postgresql/9.1/bin -B /usr/lib/postgresql/9.2/bin -d /var/lib/postgresql/9.1/main/ -D /var/lib/postgresql/9.2/main/ -O "-c config_file=/etc/postgresql/9.2/main/postgresql.conf" -o "-c config_file=/etc/postgresql/9.1/main/postgresql.conf" | |
logout # logout postgresql back to previous user | |
sudo apt-get remove postgresql-9.1 | |
sudo vim /etc/postgresql/9.2/main/postgresql.conf # change port to 5432 | |
sudo service postgresql restart |
I did it this way (for 9.3), in an automated fashion.
Thanks @ibussieres. Upgraded to 9.3.
Perfect! Works like a charm.
Thanks!
Worked great...until I got to PostGIS. Check out this post for details on dealing with the simultaneous postgres 9.1->9.3, postgis 1.5->2.x upgrade: http://sorokine.blogspot.com/2013/11/upgrading-postgresql-91postgis-15-to.html
Thanks @ibussieres. It worked... Awesome
Instructions for upgrading from 9.3 to 9.4: https://gist.github.com/dideler/60c9ce184198666e5ab4
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot! You saved my time!