参考:
PostgreSQL: Documentation: 16: 17.3. Building and Installation with Autoconf and Make
PostgreSQL 编译安装通用步骤_大明湖畔的丘处机的博客-CSDN博客
注意*
PG15及以上版本需要 Python3+
#安装依赖包
yum install -y libicu-devel
#下载源码包
wget https://ftp.postgresql.org/pub/source/v16.0/postgresql-16.0.tar.bz2 --no-check-certificate
tar jxvf postgresql-16.0.tar.bz2
cd postgresql-16.0
#开始编译
./configure --prefix=/home/opt/postgresql-16.0
make
make install
useradd postgres
mkdir -p /data/local/postgresql-16.0/data
chown postgres /data/local/postgresql-16.0/data
su - postgres
/data/local/postgresql-16.0/bin/initdb -D /data/local/postgresql-16.0/data --encoding=UTF8 --lc-collate=en_US.UTF-8 --lc-ctype=en_US.UTF-8
/data/local/postgresql-16.0/bin/pg_ctl -D /data/local/postgresql-16.0/data -l logfile start
/data/local/postgresql-16.0/bin/createdb test
/data/local/postgresql-16.0/bin/psql test
修改本地用户密码
vim /data/local/postgresql-16.0/data/pg_hba.conf
#把pg_hba.conf里的"trust"改为"md5"
#psql命令
ALTER USER postgres WITH PASSWORD '密码';
#重启
/data/local/postgresql-16.0/bin/pg_ctl -D /data/local/postgresql-16.0/data -l logfile restart
添加远程访问权限
vim /data/local/postgresql-16.0/data/postgresql.conf
#添加一行
listen_addresses = '*'
vim /data/local/postgresql-16.0/data/pg_hba.conf
#添加一行
host all postgres 0.0.0.0/0 md5
#重启
/data/local/postgresql-16.0/bin/pg_ctl -D /data/local/postgresql-16.0/data -l logfile restart
Navicat连接postgresql时出现'datlastsysoid does not exist'报错的问题
Postgres 15 从pg_database表中删除了 datlastsysoid 字段引发此错误。
解决方法1:升级navicat
解决方法2:降级pgsql
解决方法3:修改dll
打开 Navicat 安装目录,找到libcc.dll文件,可以先将其备份一下
在任何十六进制编辑器中打开此文件,如果需要,您可以使用在线工具,例如 https://hexed.it/
在文件中搜索"SELECT DISTINCT datlastsysoid",并将其替换为"SELECT DISTINCT dattablespace"
重启navicat,可以发现,无论老和新版本的pgsql,都可以正常访问了