1、安装原则:要用源码都用源码,要用yum都用yum
安装wal2json避坑
涉及的yum源,可以解决安装postgresql缺少依赖导致的wal2json和pg_tm_aux的报错问题
python
[centos-sclo-rh]
name=CentOS-7 - SCLo rh
baseurl=https://mirrors.aliyun.com/centos/7/sclo/x86_64/rh/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo
报错信息如下【安装postgresql12-devel】什么版本就对应改成几,这里12举例
python
Makefile:10: /usr/pgsql-12/lib/pgxs/src/makefiles/pgxs.mk: 没有那个文件或目录
make: *** 没有规则可以创建目标"/usr/pgsql-12/lib/pgxs/src/makefiles/pgxs.mk"。 停止。
如果还是报错,可能是和原来的pg数据库冲突,pg_config还用的是原来的pg_config,需要删除掉原来的pg_config,一般在/usr/bin/pg_config
然后重新配置现在的pg数据库的安装目录下bin目录的pg_config到/usr/bin/pg_config,加入到环境变量
python
export PATH=安装目录/bin:$PATH
完事了就可以正常的make和make install了
make和make install如果报错目录不存在就加上 一个参数
USE_PGXS=1
python
make install USE_PGXS=1
报错信息如下
python
Makefile:21: ../../src/Makefile.global: 没有那个文件或目录
Makefile:22: /contrib/contrib-global.mk: 没有那个文件或目录
make: *** 没有规则可以创建目标"/contrib/contrib-global.mk"。 停止。
这样两个插件就没啥问题,可以顺利安装了
wal2json可以直接使用
pg_tm_aux需要在数据库执行下面命令创建使用
python
create extension pg_tm_aux;