PostgreSQL服务器启动和关闭方法介绍

前端之家收集整理的这篇文章主要介绍了PostgreSQL服务器启动和关闭方法介绍前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 启动数据库服务器(posgres用户):

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

当然如果设置了环境变量

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

后,可使用pg_ctl工具进行启动:

  1. [postgres@localhostlog]$pg_ctlstart-l/opt/postgresql/log/pg_server.log
  2. pg_ctl:anotherservermightberunning;tryingtostartserveranyway
  3. pg_ctl:couldnotstartserver
  4. Examinethelogoutput.
  5. [postgres@localhostlog]$

因为之前已经启动,所以打印“another server might be running”。此时,查看日志,有如下信息:

  1. [postgres@localhostlog]$catpg_server.log
  2. FATAL:lockfile"postmaster.pid"alreadyexists
  3. HINT:Isanotherpostmaster(PID4491)runningindatadirectory"/opt/postgresql/data"?
  4. [postgres@localhostlog]$

当然,最简的启动方式是:

  1. [postgres@localhost~]$pg_ctlstart
  2. serverstarting
  3. [postgres@localhost~]$LOG:databasesystemwasshutdownat2011-07-0913:58:00CST
  4. LOG:autovacuumlauncherstarted
  5. LOG:databasesystemisreadytoacceptconnections

如果要在操作系统启动时就启动PG,可以在/etc/rc.d/rc.local文件中加以下语句:

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

2.关闭服务器

最简单方法

  1. [postgres@localhost~]$pg_ctlstop
  2. waitingforservertoshutdown....done
  3. serverstopped

Oracle相同,在关闭时也可采用不同的模式,简介如下:

  1. SIGTERM
  2. 不再允许新的连接,但是允许所有活跃的会话正常完成他们的工作,只有在所有会话都结束任务后才关闭。这是智能关闭
  3. SIGINT
  4. 不再允许新的连接,向所有活跃服务器发送SIGTERM(让它们立刻退出),然后等待所有子进程退出关闭数据库。这是快速关闭
  5. SIGQUIT
  6. 令postgres向所有子进程发送SIGQUIT并且立即退出(所有子进程也会立即退出),而不会妥善地关闭数据库系统。这是立即关闭。这样做会导致下次启动时的恢复(通过重放WAL日志)。我们推荐只在紧急的时候使用这个方法
  7. SIGKILL
  8. 此选项尽量不要使用,这样会阻止服务器清理共享内存和信号灯资源,那样的话你只能在启动服务器之前自己手工做这件事。另外,SIGKILL直接把postgres杀掉,而不会等它把信号中继给它的子进程,因此我们还需要手工杀掉每个独立子进程。

使用方法举例:

  1. [postgres@localhost~]$pg_ctlstop-oSIGTERM
  2. LOG:receivedsmartshutdownrequest
  3. LOG:autovacuumlaunchershuttingdown
  4. waitingforservertoshutdown....LOG:shuttingdown
  5. LOG:databasesystemisshutdown
  6. done
  7. serverstopped
  8. [postgres@localhost~]$

快速关闭方法:killpostgres进程

  1. [postgres@localhost~]$kill-INT`head-1/opt/postgresql/data/postmaster.pid`
  2. [postgres@localhost~]$LOG:receivedfastshutdownrequest
  3. LOG:abortinganyactivetransactions
  4. LOG:autovacuumlaunchershuttingdown
  5. LOG:shuttingdown
  6. LOG:databasesystemisshutdown

附:postgre启动后的进程,如下:

  1. [postgres@localhost~]$ps-ef|greppost
  2. root46094543013:57pts/200:00:00su-postgres
  3. postgres46104609013:57pts/200:00:00-bash
  4. postgres47241014:08pts/200:00:00/opt/postgresql/bin/postgres
  5. postgres47264724014:08?00:00:00postgres:writerprocess
  6. postgres47274724014:08?00:00:00postgres:walwriterprocess
  7. postgres47284724014:08?00:00:00postgres:autovacuumlauncherprocess
  8. postgres47294724014:08?00:00:00postgres:statscollectorprocess
  9. postgres47524610014:11pts/200:00:00ps-ef
  10. postgres47534610014:11pts/200:00:00greppost
  11. [postgres@localhost~]$
原文链接:https://www.f2er.com/postgresql/196283.html

猜你在找的Postgre SQL相关文章