Skip to content

Instantly share code, notes, and snippets.

@misuzu
Last active June 30, 2017 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save misuzu/23ac4a7f0dcd8ab7b6f5655772591fab to your computer and use it in GitHub Desktop.
Save misuzu/23ac4a7f0dcd8ab7b6f5655772591fab to your computer and use it in GitHub Desktop.
Upgrade PostgreSQL from 9.5 to 9.6 on Debian
#!/bin/bash
pg_dropcluster --stop 9.6 main && pg_upgradecluster 9.5 main && pg_dropcluster 9.5 main && apt-get remove --purge -y postgresql-9.5 postgresql-client-9.5 && service postgresql@9.6-main start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment