Environment
- CentOS OS 7.3 64 Bit
- Docker 1.12.5
Steps
- Add following into the
/etc/yum.repos.d/CentOS-Base.repo
exclude=postgresql*
-
Add two new yum repo file in
/etc/yum.repos.d
pgdg-94-centos.repo
with following content[pgdg94] name=PostgreSQL 9.4 $releasever - $basearch baseurl=https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-$releasever-$basearch enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-94 [pgdg94-source] name=PostgreSQL 9.4 $releasever - $basearch - Source failovermethod=priority baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.4/redhat/rhel-$releasever-$basearch enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-94
pgdg-96-centos.repo
with following content[pgdg96] name=PostgreSQL 9.6 $releasever - $basearch baseurl=https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-$releasever-$basearch enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96 [pgdg96-source] name=PostgreSQL 9.6 $releasever - $basearch - Source failovermethod=priority baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.6/redhat/rhel-$releasever-$basearch enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96 [pgdg96-updates-testing] name=PostgreSQL 9.6 $releasever - $basearch baseurl=https://download.postgresql.org/pub/repos/yum/testing/9.6/redhat/rhel-$releasever-$basearch enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96 [pgdg96-source-updates-testing] name=PostgreSQL 9.6 $releasever - $basearch - Source failovermethod=priority baseurl=https://download.postgresql.org/pub/repos/yum/srpms/testing/9.6/redhat/rhel-$releasever-$basearch enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
-
Install the postgresql 9.4 and postgresql 9.6
yum install postgresql94-server yum install postgresql96-server
-
Backup the mounted openproject data directory e.g.
/var/lib/openproject
-
Init postgresql 9.6 db
PGSETUP_INITDB_OPTIONS="--locale=C --encoding=UTF8" /usr/pgsql-9.6/bin/postgresql96-setup initdb
-
Copy the pgdata of the openproject to the data directory of the postgresql 9.4
cp -R /var/lib/openproject/pgdata/* /var/lib/pgsql/9.4/data chown -R postgres: /var/lib/pgsql/9.4/data/*
-
Upgrade the pgdata from 9.4 to 9.6
su - postgres /usr/pgsql-9.6/bin/pg_upgrade --old-bindir=/usr/pgsql-9.4/bin/ --new-bindir=/usr/pgsql-9.6/bin/ --old-datadir=/var/lib/pgsql/9.4/data/ --new-datadir=/var/lib/pgsql/9.6/data/