postgresql:启动与停止-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 265356
  • 博文数量: 619
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 5320
  • 用 户 组: 普通用户
  • 注册时间: 2022-03-07 15:28
个人简介

天翼云是中国电信倾力打造的云服务品牌,致力于成为领先的云计算服务提供商。提供云主机、cdn、云电脑、大数据及ai等全线产品和场景化凯发app官方网站的解决方案。

文章分类

全部博文(619)

文章存档

2024年(170)

2023年(247)

2022年(202)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: 数据库开发技术

2023-03-02 14:08:47

本文分享自天翼云开发者社区@《postgresql:启动与停止》,作者: 周*****平

链接:

https://www.ctyun.cn/developer/article/358337908486292?track=|cp:cz_bk|tgdy:wenzhang|ttjh:bokeshequ|key:bw298|pf:pc

 

启动和停止 postgresql 数据库服务器,通常使用pg_ctl。通常在我们的生产环境中,如果数据库主机发生意外停机或者由于计划内的硬件配置等操作停止了主机后,postgresql 服务也将会停止,需要手动重启。因此,在生产环境中,采用编译安装 postgresql 数据库后,建议配置系统 postgresql.service 服务,通过 systemctl 系统命令设置开机自动启动。

 

使用 systemctl 命令

配置 systemctl 服务

配置该服务之后,redhat linux 就可以使用 systemctl 系统控制命令来启动 postgresql 数据库了。

 

1.使用 root 用户切换到 /usr/lib/systemd/system 目录,编辑 postgresql-12.service 文件,该文件默认不存在,需要手动编辑,如下:

 

vi postgresql-12.service

 

[unit]

description=postgresql database server

after=network.target

[service]

type=forking

user=postgres

group=postgres

environment=pgport=5432

environment=pgdata=/data/pg_data/

oomscoreadjust=-1000

execstart=/opt/pgsql/bin/pg_ctl start -d ${pgdata} -s -o "-p ${pgport}" -w -t 300

execstop=/opt/pgsql/bin/pg_ctl stop -d ${pgdata} -s -m fast

execreload=/opt/pgsql/bin/pg_ctl reload -d ${pgdata} -s

timeoutsec=300

[install]

wantedby=multi-user.target

 

2.然后之下下列命令启用服务控制守护

[root@node1 pg_data]# systemctl daemon-reload

3.使用systemctl系统服务控制命令启动 postgresql

[root@node1 pg_data]# systemctl start postgresql-12.service

4.配置开机启动

[root@node1 pg_data]# systemctl enable postgresql-12.service

 

简介 systemctl 命令

1.使用systemctl 命令停止数据库
[sdedu@root:/root]#systemctl stop postgresql-12.service

2.使用sytsemctl 命令启动数据库
[sdedu@root:/root]#systemctl start postgresql-12.service

3.使用systemctl 命令启用数据库服务开机后自动启动
[sdedu@root:/root]#systemctl enable postgresql-12.service

 

使用 pg_ctl 命令

pg_ctl 命令为 postgresql 服务端应用程序,可以用来初始化,启动和停止及控制 postgresql 服务器。

pg_ctl 语法格式:

初始化数据库
pg_ctl init[db]   [-d datadir] [-s] [-o options]

启动数据库
pg_ctl start      [-d datadir] [-l filename] [-w] [-t secs] [-s] [-o options] [-p path] [-c]

关闭数据库
pg_ctl stop [-d datadir] [-m shutdown-mode] [-w]

重启数据库
pg_ctl 重新启动 [-d datadir] [-m shutdown-mode] [-w] [-t secs] [-s] [-o options] [-c]

重新加载 postgresql.conf 或 pg_hba.conf 文件
pg_ctl reload     [-d datadir] [-s]

查看服务器是否在指定的数据目录运行
pg_ctl status     [-d datadir]

pg_ctl提升 [-d datadir] [-w] [-t secs] [-s]

pg_ctl logrotate  [-d datadir] [-s]

pg_ctl杀死信号名pid

 

命令选项

-d, --pgdata=datadir:指定数据库相关文件的数据目录,如果省略,默认读取 pgdata 环境变量

-s, --silent:静默输出,仅仅输出错误消息

-t, --timeout=secs:指定等待操作完成的{banned}最佳大延时秒数。默认为 pgctltimeout 环境变量的值,如果省略,默认60秒

-v, --版本输出版本信息,然后退出

-w, --wait:等待操作完成,如果操作在延迟时间内未完成,pg_ctl 退出状态为非零

-w, --no-wait:不等待操作完成,不会提示数据库停止是否完成

 

启动 & 重启选项

-c, --core-files 允许 postgres 生成核心文件

-l, --log=filename:将服务器日志输出追加到 filename中,也叫做服务器日志文件。如果该文件的 umask 设置为077,访问日志文件默认情况下其它用户不可读。

-o, --options=options 命令行选项,以传递给 postgres(postgresql 服务器可执行文件)或 initdb

-p 路径到postgres通常不是必需的

 

启动 & 停止选项

-m, --mode=mode:指定关闭数据库的模式,有三个选项,smart,fast,immediate,省略默认为fast

 

关库选项

smart:smart模式会等待活动的事务提交结束, 并等待客户端主动断开连接之后关闭数据库

fast:fast模式则会回滚所有活动的事务, 并强制断开客户端的连接之后关闭数据库(默认)

立即:模式立即终止所有服务器进程,当下一次数据库启动时它会首先进入恢复状态(不推荐使用)

 

来自 “ itpub博客 ” ,链接:http://blog.itpub.net/31490526/viewspace-2711965/,如需转载,请注明出处,否则将追究法律责任。

 

阅读(385) | 评论(0) | 转发(0) |
0

上一篇:

下一篇:无服务器serverless总结

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图