- The versions are not binary compatible, so I have had to dump and restore all databases that I wanted to see after upgrade (no need to dump system templates like template0 and template1) Replace gis1 gis2 gis3 with a space-delimited list of the databases which you want to preserve after the upgrade. This command will result in a set of binary dump files, one file per database. The file names will containing the name of the database and the date of the dump. You will also need a list of database users. You can get the list with \du command in psql.
- Remove old packages (this is likely optional, postgresql versions can co-exist but I did not try)
- Install new postgresql version following these instructions: https://wiki.postgresql.org/wiki/Apt (automatic install of 9.3, may need to specify version explicitly)
- By this time you should have postgreql server up and running but not responding to external connections. This is a great time to restore dumped databases. Typical cycle for restoring a database includes:
- Recreate all database users
- Create the database
- Recreate extensions, PostGIS 2.0 uses extension mechanism and there is no need to use scripts restore all other extensions that are needed by the database
- Restore the database from the dump file
- Now check the content of the err.txt file, it should be empty
- However, if you see errors because of any users or extensions missing, drop the database, repeat all the previous steps and also create the missing users and extensions.
- If you see an error like 'invalid command \N', first fix all other problems with the databases and repeat the import again, this error will be likely gone.
- Reclaim space and update statistics:
- modify hba file to your need (details), enable listening on external address in postgresql.conf and finally do