如何在 centos 7 上停止 posgresql?

如何在 centos 7 上停止 posgresql?

如何在 CentOS 7 上停止 Postgresql 实例 9.2。

/etc/init.d/我在ctl 程序下找不到任何内容。

答案1

欢迎来到的世界系统

尝试类似的方法:

service postgresql-9.2 stop

如果这不起作用,请尝试查找正确的服务名称:

systemctl list-units|grep postgresql

并使用“.service”之前的结果部分重试上面的命令。

答案2

在 Centos 7 上您应该使用systemctl.前任。:

/bin/systemctl stop postgresql

答案3

在 CentOS7 上:

  1. 肯定是“运行 systemctl list-units|grep postgresql”第一个并获取服务的全名
  2. 'systemctl 停止 postgresql-??.service'
  3. 'su-postgres-c“psql”''

  4. 你应该得到确认 postgres 事实上已经停止:

'psql:无法连接到服务器:没有这样的文件或目录。服务器是否在本地运行并接受 Unix 域套接字“/var/run/postgresql/.s.PGSQL.5432”上的连接?

相关内容