PostgreSQL Systemctl启动设置

本文详细指导了如何在Ubuntu系统中对postgresql.service文件进行编辑,添加启动、停止、重启及状态检查命令,确保PostgreSQL数据库服务器的顺利运行。
摘要由CSDN通过智能技术生成

root用户
cd /usr/lib/systemd/system
vi postgresql.service #增加下面内容,并根据实际内容修改
[Unit]
Description=PostgreSQL database server
After=network.target

[Service]
Type=forking
User=postgres
Group=postgres
OOMScoreAdjust=-1000
Environment=PG_OOM_ADJUST_FILE=/proc/self/oom_score_adj
Environment=PG_OOM_ADJUST_VALUE=0
Environment=PGSTARTTIMEOUT=300
Environment=PGDATA=/opt/pg12.4/data
ExecStart=/opt/pg12.4/bin/pg_ctl start -D ${PGDATA} -l /home/postgres/logfile -s -w -t ${PGSTARTTIMEOUT}
ExecStop=/opt/pg12.4/bin/pg_ctl stop -D ${PGDATA} -s -m fast
ExecReload=/opt/pg12.4/bin/pg_ctl reload -D ${PGDATA} -s

[Install]
WantedBy=multi-user.target

在建立文件后,postgresql.serivce需要将文件加载进systemctl并且在打开enable 

systemctl daemon-reload

systemctl enable postgresql

systemctl start postgresql

systemctl list-units --type=service --state=active

systemctl list-units --type=service --state=running 
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值