美文网首页Linux 运维
2019-10-17 查看/关闭/启动/重启/初始化Postgr

2019-10-17 查看/关闭/启动/重启/初始化Postgr

作者: 雨笋情缘 | 来源:发表于2019-10-17 10:45 被阅读0次

#1.查看postgres的状态信息(是否运行,PID等)

./pg_ctl status -D /usr/local/postgres/data

#2.关闭postgres服务器

./pg_ctl stop -D /usr/local/postgres/data

#3.启动postgres服务器

./pg_ctl start -D /usr/local/postgres/data

#4.重启postgres服务器

./pg_ctl restart -D /usr/local/postgres/data

另一种启动方式:

重新启动postgresql

#5.初始化postgres数据

./pg_ctl initdb -D /usr/local/postgres/data

相关文章

网友评论

    本文标题:2019-10-17 查看/关闭/启动/重启/初始化Postgr

    本文链接:https://www.haomeiwen.com/subject/jhdmmctx.html