PostgreSQL16.2安装文档

原创作者:数据库工程师 鄢守一

powershell 复制代码
#安装依赖
yum install gcc*
yum -y install readline-devel zlib-devel
yum -y install libicu-devel 
powershell 复制代码
#创建用户
groupadd postgres
useradd -g postgres postgres
passwd postgres
powershell 复制代码
#创建软件目录和数据目录
mkdir -p /u01/pg16/data
chown postgres /u01/pg16/data
powershell 复制代码
#编译安装
tar -zxvf postgresql-16.2.tar.gz
cd postgresql-16.2
./configure --prefix=/u01/pg16
make world
make install-world
powershell 复制代码
#初始化数据库
su - postgres
/u01/pg16/bin/initdb -D /u01/pg16/data 
powershell 复制代码
#启动数据库
/u01/pg16/bin/pg_ctl -D /u01/pg16/data -l logfile start
powershell 复制代码
#修改环境变量
vim ~/.bash_profile
powershell 复制代码
PATH=$PATH:$HOME/.local/bin:$HOME/bin:/u01/pg16/bin
export PATH
PGDATA=/u01/pg16/data
export PGDATA
export LANG=en_US
powershell 复制代码
source ~/.bash_profile
powershell 复制代码
#修改管理员密码
psql
alter user postgres password 'postgres';
powershell 复制代码
#修改/u01/pg16/data/pg_hba.conf文件,针对IPV4地址的客户端机器,允许其通过任意IP地址,通过md5加密认证。
vim /u01/pg16/data/pg_hba.conf
#IPv4 local connections: 添加一行
host all all 0.0.0.0/0 trust
powershell 复制代码
#修改/u01/pg16/data/postgresql.conf文件
vim /u01/pg16/data/postgresql.conf

配置文件

powershell 复制代码
listen_addresses = '*'
max_connections = 500
shared_buffers = 2GB
dynamic_shared_memory_type = posix 
max_wal_size = 2GB
min_wal_size = 256MB
logging_collector = on
log_directory = 'pg_log'
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'
log_rotation_age = 1d
log_rotation_size = 100MB
log_timezone = 'Asia/Shanghai'
datestyle = 'iso, mdy'
timezone = 'Asia/Shanghai'
lc_messages = 'en_US.UTF-8'
lc_monetary = 'en_US.UTF-8' 
lc_numeric = 'en_US.UTF-8' 
lc_time = 'en_US.UTF-8'
default_text_search_config = 'pg_catalog.english'
powershell 复制代码
#重启数据库生效
pg_ctl restart -m fast
powershell 复制代码
#配置服务
vim /usr/lib/systemd/system/postgresql.service
powershell 复制代码
[Unit]
Description=postgreSQL Server

[Service]
User=postgres
Group=postgres
Type=forking
TimeoutSec=0
PermissionsStartOnly=true
ExecStart=/u01/pg16/bin/pg_ctl -D /u01/pg16/data start
ExecStop=/u01/pg16/bin/pg_ctl stop -D /u01/pg16/data -s -m fast
LimitNOFILE = 65535
Restart=on-failure
RestartSec=3
RestartPreventExitStatus=1
PrivateTmp=false

[Install]
WantedBy=multi-user.target
powershell 复制代码
# 加载配置和启动
systemctl daemon-reload && systemctl enable postgresql
powershell 复制代码
# 关掉服务的自启动
systemctl disable postgresql 
powershell 复制代码
# 关闭和启动服务
systemctl stop postgresql 
相关推荐
cpsvps18 分钟前
环境变量管理于美国服务器多环境部署的实施标准
运维·服务器·数据库
IvorySQL20 分钟前
【生态再升级】IvorySQL 4.5 与银河麒麟高级服务器操作系统V11完成适配认证!
运维·服务器·数据库·postgresql·ivorysql
云游32 分钟前
Zabbix7.4.8(一):通过Zabbix agent 2监控postgresql相关指标
运维·postgresql·zabbix
CYX_cheng1 小时前
sqlsugar sqlite
数据库·sqlite
茉莉玫瑰花茶1 小时前
Redis - Bitmap 类型
数据库·redis·缓存
IvorySQL2 小时前
聚焦六大功能:PostgreSQL 18 新特性深度解析
数据库·postgresql·开源
饿了我会自己捡代码吃2 小时前
【MySQL】使用C/C++链接mysql数据库
c语言·数据库·mysql
gb42152872 小时前
DDD 与传统三层架构的详细对比
数据库·架构
不是三毛没有半3 小时前
Mysql 简单的语句回顾
数据库·mysql·oracle
abcefg_h3 小时前
MySQL查询详细介绍
数据库·mysql