您好,登錄后才能下訂單哦!
這篇文章主要介紹postgresql關閉服務器的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
postgresql關閉服務器的方法:
[postgres@localhost ~]$ pg_ctl stop waiting for server to shut down.... done server stopped
pg_ctl stop
$ pg_ctl --help Usage: pg_ctl stop [-W] [-t SECS] [-D DATADIR] [-s] [-m SHUTDOWN-MODE] Common options: -D, --pgdata=DATADIR location of the database storage area -s, --silent only print errors, no informational messages -t, --timeout=SECS seconds to wait when using -w option -V, --version output version information, then exit -w wait until operation completes -W do not wait until operation completes Options for stop or restart: -m, --mode=MODE MODE can be "smart", "fast", or "immediate" Shutdown modes are: smart quit after all clients have disconnected fast quit directly, with proper shutdown immediate quit without complete shutdown; will lead to recovery on restart Allowed signal names for kill: ABRT HUP INT QUIT TERM USR1 USR2
pg_ctl stop -m smart
SIGTERM "Smart"模式等待所有客戶端斷開連接以及任何在線備份結束。如果該服務器是熱備,一旦所有的客戶端已經斷開連接,恢復和流復制將被終止。
pg_ctl stop -m fast
SIGINT "Fast"模式(默認)不會等待客戶端斷開連接并且將終止進行中的在線備份。所有活動事務都被回滾并且客戶端被強制斷開連接,然后服務器被關閉。
pg_ctl stop -m immediate
SIGQUIT "Immediate"模式將立刻中止所有服務器進程,而不是做一次干凈的關閉。這將導致下一次重啟時進行一次崩潰恢復。
以上是postgresql關閉服務器的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。