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 
相关推荐
RisingWave中文开源社区1 小时前
经验分享|用开源产品构建一个高性能实时推荐引擎
数据库·后端·开源
jay丿2 小时前
Django 初始化导入数据详解
数据库·django·sqlite
CodeJourney.3 小时前
用DEEPSEEK做数据看板:高效、实用与创新的融合
数据库·人工智能·python·算法
xuanloyer3 小时前
第二篇《Active Data Guard 实战:打造高可用数据库》(ADG)
运维·数据库·oracle
m0_748235953 小时前
PostgreSQL在Linux环境下的常用命令总结
linux·postgresql·oracle
小王不会写code4 小时前
Unknown collation: ‘utf8mb4_0900_ai_ci‘
数据库·mysql
局外人LZ4 小时前
windows安装Neo4j图数据库
数据库·windows·neo4j
AaronZZH4 小时前
Neo4j 数据库备份
数据库·neo4j
m0_748256144 小时前
Spring 事务失效的 8 种场景!
java·数据库·spring
dowhileprogramming5 小时前
Python Flask 和数据库系统交互
数据库·python·flask