Forked from giannisp/gist:ebaca117ac9e44231421f04e7796d5ca
Last active
March 14, 2018 11:31
-
-
Save mishbah/b46673e817848d7fae83e14b6a6b631f to your computer and use it in GitHub Desktop.
Upgrade PostgreSQL 9.6.5 to 10.3 using Homebrew (macOS)
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
After automatically updating Postgres to 10.3 via Homebrew, the pg_ctl start command didn't work. | |
The error was "The data directory was initialized by PostgreSQL version 9.6, which is not compatible with this version 10.3." | |
Database files have to be updated before starting the server, here are the steps that had to be followed: | |
# if default not linked to version 10.3 run this script,otherwise skip | |
# need to have both 9.6.x and latest 10.3 installed, and keep 10.3 as default | |
# brew unlink postgresql | |
# brew install postgresql@9.6 | |
# brew unlink postgresql@9.6 | |
# brew link postgresql | |
# move 9.6.x db files to another directory | |
mv /usr/local/var/postgres /usr/local/var/postgres96 | |
# init new database using 10.3 | |
initdb /usr/local/var/postgres -E utf8 | |
# make timezone and timezonesets directories available for 9.6.x installation | |
mkdir /usr/local/share/postgresql96 | |
cp -r /usr/local/share/postgresql/timezone /usr/local/share/postgresql96 | |
cp -r /usr/local/share/postgresql/timezonesets /usr/local/share/postgresql96 | |
# finally the actual upgrade | |
# -b is the old binary dir, -B is the new binary dir | |
# -d is the old data dir, -D is the new data dir | |
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.5/bin -B /usr/local/Cellar/postgresql/10.3/bin -d /usr/local/var/postgres96 -D /usr/local/var/postgres | |
# start 10.3 to check that upgrade works | |
pg_ctl start -D /usr/local/var/postgres | |
# cleanup if upgrade was successful | |
brew uninstall postgresql@9.6 | |
rm -rf /usr/local/var/postgres96 | |
rm -rf /usr/local/share/postgresql96 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment