首页 > 数据库技术 > 详细

Upgrade to postgresql 9.5

时间:2016-01-11 20:24:27      阅读:304      评论:0      收藏:0      [点我收藏+]

? ?

Add postgresql apt repo.. according to your distribution (utopic, trusty, jessie, wheezy and etc):

? ?

deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main 9.5

? ?

Install postgresql 9.5

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

apt-get update

apt-get install postgresql-9.5

? ?

? ?

Upgrade db files.

? ?

Pg9.3 to pg9.5, run the following command

? ?

sudo -H -u postgres

/usr/lib/postgresql/9.5/bin/pg_upgrade -b /usr/lib/postgresql/9.3/bin/

-B /usr/lib/postgresql/9.5/bin/

-d /var/lib/postgresql/9.3/main

-D /var/lib/postgresql/9.5/main

-o ‘ -c config_file=/etc/postgresql/9.3/main/postgresql.conf‘

-O ‘ -c config_file=/etc/postgresql/9.5/main/postgresql.conf‘

? ?

? ?

? ?

Pg9.1 to pg9.5, run the following command

? ?

sudo -H -u postgres

/usr/lib/postgresql/9.5/bin/pg_upgrade -b /usr/lib/postgresql/9.1/bin/

-B /usr/lib/postgresql/9.5/bin/

-d /var/lib/postgresql/9.1/main

-D /var/lib/postgresql/9.5/main

-o ‘ -c config_file=/etc/postgresql/9.1/main/postgresql.conf‘

-O ‘ -c config_file=/etc/postgresql/9.5/main/postgresql.conf‘

? ?

? ?

? ?

? ?

? ?

Upgrade to postgresql 9.5

原文:http://www.cnblogs.com/odoouse/p/5122249.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!