命令对Redhat/Suse操作系统有效:
服务器启、停、重启:
pg_ctl -D PGDATA start
pg_ctl -D PGDATA -m fast stop(快速停止)
pg_ctl -D PGDATA -m immediate stop(紧急停止)
pg_ctl -D PGDATA -m fast restart(紧急停止)
重载configure配置文件:
select pg_reload_conf();
select name from pg_settings where context = 'sighup';
kill -SIGHUP pid
原文链接:https://www.f2er.com/postgresql/196451.html