It is
assumed that your reporting database runs on port 5632 and the same port number is used in
commands hereinafter in this topic. You can substitute the right port number if you have
your reporting database running on a different port.
-
Upgrade
your PostgreSQL reports data directory to
PostgreSQL
9.3.
- cd /opt/collabnet/pgturant/bin/
- ./pgturant -s
/var/lib/pgsql/9.0/reports -d /var/lib/pgsql/9.3 -u
9.3
-m
-
Open the analyze_new_cluster.sh file.
- vim
/var/lib/pgsql/9.3/analyze_new_cluster.sh
-
Find and replace all.
- Find all occurrences of this: /usr/pgsql-9.3/bin/vacuumdb"
--all --analyze-only
- Replace with: /usr/pgsql-9.3/bin/vacuumdb" -p
5632 --all --analyze-only
-
Create a new postgresql-9.3_reports file.
- cp /etc/init.d/postgresql-9.3
/etc/init.d/postgresql-9.3_reports
-
Open the newly created postgresql-9.3_reports file.
- vim
/etc/init.d/postgresql-9.3_reports
-
Modify the PGPORT, PGDATA and PGLOG values in the
postgresql-9.3_reports file as follows.
- PGPORT=5632
- PGDATA=/var/lib/pgsql/${PGMAJORVERSION}/reports
- PGLOG=/var/lib/pgsql/${PGMAJORVERSION}/pgstartup_reports.log
-
Start postgresql-9.3_reports.
- /etc/init.d/postgresql-9.3_reports start
-
Run the
analyze_new_cluster.sh
script.
- su - postgres -c
"/var/lib/pgsql/9.3/analyze_new_cluster.sh"
-
Stop postgresql-9.3_reports.
- /etc/init.d/postgresql-9.3_reports stop
-
Go back and continue with the other upgrade steps.