PostgrSQL - Direct Upgrade to Version 9.3
service tomcat6 stop
su - postgres
pg_dumpall > mydata.bu
exit
mv /var/lib/pgsql/mydata.bu /root
cd /var/lib
wget http://get.enterprisedb.com/postgresql/postgresql-9.3.5-1-linux-x64.run
chmod u+x postgresql-9.3.5-1-linux-x64.run
./postgresql-9.3.5-1-linux-x64.run
mv /etc/init.d/postgresql-9.3 /etc/init.d/postgresql
cd /opt/PostgreSQL/9.3/bin
psql -Upostgres < /root/mydata.bu
service postgresql restart
service tomcat6 start
ln -s /opt/PostgreSQL/9.3 /var/lib/pgsql