postgresql数据库常用命令(2)

前端之家收集整理的这篇文章主要介绍了postgresql数据库常用命令(2)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

命令对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

猜你在找的Postgre SQL相关文章