使用pg_upgrade升级postgres大版本

pg_upgrade有普通模式和Link模式两种升级模式。 在普通模式下, 会把旧版本的数据拷贝到新版本中, 所以如果使用普通模式升级, 要确保有足够的磁盘空间存储新旧两份数据;link模式下, 只是在新版本的数据目录中建立了旧版本数据文件的硬链接, 可以有效减少磁盘占用的空间在升级之前应该运行pg_upgrade并用-c参数检查新旧版本的兼容性, 把每一项不兼容的问题都解决了才可以顺利升级。使用pg_upgrade时加上-c参数只会检查新旧版本的兼容性, 不会运行真正的升级程序, 不会修改数据文件, 并且在命令结束时, 会输出一份检查结果的报告, 还会对需要手动调整的项做出简要的描述

1、安装新版本PostgreSQL并初始化数据目录

使用源码安装,configure配置和原库使用一致

查看旧的安装时的参数

[postgres@QXY1 postgresql-10.3]$ cat config.log  | more
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by PostgreSQL configure 10.3, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --prefix=/home/postgres/pg10.3/ --without-readline --without-zlib

2、安装并初始化

上传
postgresql-12.2.tar.gz
解压
tar -xvf postgresql-12.2.tar.gz
安装
cd postgresql-12.2
 ./configure --prefix=/home/postgres/pg12/ --without-readline --without-zlib
make
make install

初始化数据目录

[postgres@QXY1 ~]$ /home/postgres/pg12/bin/initdb -E utf8 -D /home/postgres/pg12/data
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale "en_US.utf8".
The default text search configuration will be set to "english".

Data page checksums are disabled.

fixing permissions on existing directory /home/postgres/pg12/data ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default time zone ... PRC
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_COLLATE to default locale: No such file or directory
2020-11-19 13:51:10.978 CST [15921] WARNING:  no usable system locales were found
ok
syncing data to disk ... ok

initdb: warning: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

    /home/postgres/pg12/bin/pg_ctl -D /home/postgres/pg12/data -l logfile start

[postgres@QXY1 ~]$ 

3、检查版本兼容性

[postgres@QXY1 ~]$ /home/postgres/pg12/bin/pg_upgrade -b /home/postgres/pg10.3/bin -B /home/postgres/pg12/bin -d /home/postgres/pg10/data -D /home/postgres/pg12/data -k -c
Performing Consistency Checks on Old Live Server
------------------------------------------------
Checking cluster versions                                   ok
Checking database user is the install user                  ok
Checking database connection settings                       ok
Checking for prepared transactions                          ok
Checking for reg* data types in user tables                 ok
Checking for contrib/isn with bigint-passing mismatch       ok
Checking for tables WITH OIDS                               ok
Checking for invalid "sql_identifier" user columns          ok
Checking for presence of required libraries                 ok
Checking database user is the install user                  ok
Checking for prepared transactions                          ok

*Clusters are compatible*
[postgres@QXY1 ~]$ 

最后一行输出“Clusters are compatible”说明已经通过兼容性测试, 如果最后一行输出“Failure, exiting”, 说明新旧版本不兼容, 这时应该查看输出中给的提示, 例如
Your installation references loadable libraries that are missing from th
new installation. You can add these libraries to the new installation,
or remove the functions using them from the old installation. A list of
problem libraries is in the file:
loadable_libraries.txt

4、停止旧版本数据库

[postgres@QXY1 ~]$ pg_ctl stop 
waiting for server to shut down.... done
server stopped
[postgres@QXY1 ~]$ 

5、使用pg_upgrade普通模式升级

[postgres@QXY1 ~]$ /home/postgres/pg12/bin/pg_upgrade -b /home/postgres/pg10.3/bin -B /home/postgres/pg12/bin -d /home/postgres/pg10/data -D /home/postgres/pg12/data
Performing Consistency Checks
-----------------------------
Checking cluster versions                                   ok
Checking database user is the install user                  ok
Checking database connection settings                       ok
Checking for prepared transactions                          ok
Checking for reg* data types in user tables                 ok
Checking for contrib/isn with bigint-passing mismatch       ok
Checking for tables WITH OIDS                               ok
Checking for invalid "sql_identifier" user columns          ok
Creating dump of global objects                             ok
Creating dump of database schemas
                                                            ok
Checking for presence of required libraries                 ok
Checking database user is the install user                  ok
Checking for prepared transactions                          ok

If pg_upgrade fails after this point, you must re-initdb the
new cluster before continuing.

Performing Upgrade
------------------
Analyzing all rows in the new cluster                       ok
Freezing all rows in the new cluster                        ok
Deleting files from new pg_xact                             ok
Copying old pg_xact to new server                           ok
Setting next transaction ID and epoch for new cluster       ok
Deleting files from new pg_multixact/offsets                ok
Copying old pg_multixact/offsets to new server              ok
Deleting files from new pg_multixact/members                ok
Copying old pg_multixact/members to new server              ok
Setting next multixact ID and offset for new cluster        ok
Resetting WAL archives                                      ok
Setting frozenxid and minmxid counters in new cluster       ok
Restoring global objects in the new cluster                 ok
Restoring database schemas in the new cluster
                                                            ok
Copying user relation files
                                                            ok
Setting next OID for new cluster                            ok
Sync data directory to disk                                 ok
Creating script to analyze new cluster                      ok
Creating script to delete old cluster                       ok

Upgrade Complete
----------------
Optimizer statistics are not transferred by pg_upgrade so,
once you start the new server, consider running:
    ./analyze_new_cluster.sh

Running this script will delete the old cluster's data files:
    ./delete_old_cluster.sh
[postgres@QXY1 ~]$ 

-b源库的bin目录

-B新库的bin目录

-d源库的数据目录

-D为新版本的数据目录

升级完成之后,会生成两个脚本,一个是analyze_new_cluster.sh,该脚本主要是分析收集新库的统计信息等,另一个脚本delete_old_cluster.sh 是删除旧库的数据

[postgres@QXY1 ~]$ cat ./analyze_new_cluster.sh
#!/bin/sh

echo 'This script will generate minimal optimizer statistics rapidly'
echo 'so your system is usable, and then gather statistics twice more'
echo 'with increasing accuracy.  When it is done, your system will'
echo 'have the default level of optimizer statistics.'
echo

echo 'If you have used ALTER TABLE to modify the statistics target for'
echo 'any tables, you might want to remove them and restore them after'
echo 'running this script because they will delay fast statistics generation.'
echo

echo 'If you would like default statistics as quickly as possible, cancel'
echo 'this script and run:'
echo '    "/home/postgres/pg12/bin/vacuumdb" --all --analyze-only'
echo

"/home/postgres/pg12/bin/vacuumdb" --all --analyze-in-stages
echo

echo 'Done'
[postgres@QXY1 ~]$ 
[postgres@QXY1 ~]$ cat ./delete_old_cluster.sh
#!/bin/sh

rm -rf '/home/postgres/pg10/data'
rm -rf '/home/postgres/pgtbs/PG_10_201707211'
rm -rf '/home/postgres/tbs/PG_10_201707211'
[postgres@QXY1 ~]$ 

6、升级之后环境验证

--修改环境变量

[postgres@QXY1 ~]$ vi .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH
export PGHOME=/home/postgres/pg12
export PGDATA=/home/postgres/pg12/data
export PATH=$PGHOME/bin:/opt/python2.7.3/bin:$PATH
export MANPATH=/opt/python2.7.3/share/man:$MANPATH
export MANPATH=$PGHOME/share/man:$MANPATH
export LANG=en_US.utf8
export DATE=`date +"%Y-%m-%d %H:%M:%S"`
export LD_LIBRARY_PATH=$PGHOME/lib:$LD_LIBRARY_PATH
export PYTHONPATH=/opt/python2.7.3/lib:$PYTHONPATH
stty erase ^H
export TERM=xterm
alias rm='rm  -i'
alias ll='ls -lh'

[postgres@QXY1 ~]$ . .bash_profile
[postgres@QXY1 ~]$ 
[postgres@QXY1 ~]$ 
[postgres@QXY1 ~]$ psql
psql (12.2)
Type "help" for help.

postgres@[local]:5432=#
postgres@[local]:5432=#
postgres@[local]:5432=#select version();
                                                 version                                                 
---------------------------------------------------------------------------------------------------------
 PostgreSQL 12.2 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-23), 64-bit
(1 row)

postgres@[local]:5432=#
postgres@[local]:5432=#\dt  
                  List of relations
 Schema |     Name     |       Type        |  Owner   
--------+--------------+-------------------+----------
 public | history      | partitioned table | zabbix
 public | history_log  | partitioned table | zabbix
 public | history_str  | partitioned table | zabbix
 public | history_text | partitioned table | zabbix
 public | history_uint | partitioned table | zabbix
 public | t            | table             | postgres
 public | trends       | partitioned table | zabbix
 public | trends_uint  | partitioned table | zabbix
(8 rows)

postgres@[local]:5432=#select * from t;
 id 
----
 10
(1 row)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值