PostgreSQL伺服器啟動和關閉方法介紹

來源:互聯網
上載者:User

1. 啟動資料庫伺服器(posgres使用者):

  1. [postgres@localhost bin]$ postgres -D /opt/postgresql/data/ > /opt/postgresql/log/pg_server.log 2>&1 &  
  2. [1] 4508  

當然如果設定了環境變數

  1. PGDATA=/opt/postgresql/data  
  2. export PGDATA  

後,可使用pg_ctl工具進行啟動:

  1. [postgres@localhost log]$ pg_ctl start -l /opt/postgresql/log/pg_server.log  
  2. pg_ctl: another server might be running; trying to start server anyway  
  3. pg_ctl: could not start server  
  4. Examine the log output.  
  5. [postgres@localhost log]$  

因為之前已經啟動,所以列印“another server might be running”。此時,查看日誌,有如下資訊:

  1. [postgres@localhost log]$ cat pg_server.log  
  2. FATAL:  lock file "postmaster.pid" already exists  
  3. HINT:  Is another postmaster (PID 4491) running in data directory "/opt/postgresql/data"?  
  4. [postgres@localhost log]$  

當然,最簡的啟動方式是:

  1. [postgres@localhost ~]$ pg_ctl start  
  2. server starting  
  3. [postgres@localhost ~]$ LOG:  database system was shut down at 2011-07-09 13:58:00 CST  
  4. LOG:  autovacuum launcher started  
  5. LOG:  database system is ready to accept connections  

如果要在作業系統啟動時就啟動PG,可以在/etc/rc.d/rc.local 檔案中加以下語句:

  1. /opt/postgresql/bin/pg_ctl start -l /opt/postgresql/log/pg_server.log -D /opt/postgresql/data  

2.關閉伺服器

最簡單方法:

  1. [postgres@localhost ~]$ pg_ctl stop  
  2. waiting for server to shut down.... done  
  3. server stopped  

與Oracle相同,在關閉時也可採用不同的模式,簡介如下:

  1. SIGTERM   
  2. 不再允許新的串連,但是允許所有活躍的會話正常完成他們的工作,只有在所有會話都結束任務後才關閉。這是智能關閉。  
  3.   
  4. SIGINT   
  5. 不再允許新的串連,向所有活躍伺服器發送 SIGTERM(讓它們立刻退出),然後等待所有子進程退出並關閉資料庫。這是快速關閉。  
  6.   
  7. SIGQUIT   
  8. 令 postgres 向所有子進程發送 SIGQUIT 並且立即退出(所有子進程也會立即退出),而不會妥善地關閉資料庫系統。這是立即關閉。這樣做會導致下次啟動時的恢複(通過重放 WAL 日誌)。我們推薦只在緊急的時候使用這個方法。  
  9.   
  10. SIGKILL   
  11. 此選項盡量不要使用,這樣會阻止伺服器清理共用記憶體和號誌資源,那樣的話你只能在啟動伺服器之前自己手工做這件事。另外,SIGKILL 直接把 postgres 殺掉,而不會等它把訊號中繼給它的子進程,因此我們還需要手工殺掉每個獨立子進程。  

使用方法舉例:

  1. [postgres@localhost ~]$ pg_ctl stop -o SIGTERM  
  2. LOG:  received smart shutdown request  
  3. LOG:  autovacuum launcher shutting down  
  4. waiting for server to shut down....LOG:  shutting down  
  5. LOG:  database system is shut down  
  6.  done  
  7. server stopped  
  8. [postgres@localhost ~]$  

最快速關閉方法:kill postgres 進程

  1. [postgres@localhost ~]$ kill -INT `head -1 /opt/postgresql/data/postmaster.pid`  
  2. [postgres@localhost ~]$ LOG:  received fast shutdown request  
  3. LOG:  aborting any active transactions  
  4. LOG:  autovacuum launcher shutting down  
  5. LOG:  shutting down  
  6. LOG:  database system is shut down  

 附:postgre啟動後的進程,如下:

  1. [postgres@localhost ~]$  ps -ef|grep post  
  2. root      4609  4543  0 13:57 pts/2    00:00:00 su - postgres  
  3. postgres  4610  4609  0 13:57 pts/2    00:00:00 -bash  
  4. postgres  4724     1  0 14:08 pts/2    00:00:00 /opt/postgresql/bin/postgres  
  5. postgres  4726  4724  0 14:08 ?        00:00:00 postgres: writer process  
  6. postgres  4727  4724  0 14:08 ?        00:00:00 postgres: wal writer process  
  7. postgres  4728  4724  0 14:08 ?        00:00:00 postgres: autovacuum launcher process  
  8. postgres  4729  4724  0 14:08 ?        00:00:00 postgres: stats collector process  
  9. postgres  4752  4610  0 14:11 pts/2    00:00:00 ps -ef  
  10. postgres  4753  4610  0 14:11 pts/2    00:00:00 grep post  
  11. [postgres@localhost ~]$  

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.