Re: pg_ctl: server does not shut down

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Gnanakumar wrote:
1. What could be the root cause of PostgreSQL server not shutting
down ever?
2. Am I following a different/incorrect way of disabling PITR?

You can check if PITR is disabled by executing:

SHOW archive_command;

At a psql prompt. If that's empty, then you turned it off, and it isn't involved in the shutdown issue you have anymore.

Normally when the server doesn't want to shut down, that's because of a client that won't exit normally, not something in the main server. Take a look at what processes are still running against the database and see if there are clients attached after the fast shutdown attempt. If so, those are your problem, not something to PITR.

If you know every client has been stopped or is doing nothing useful, you can do an immediate shutdown of the server and kick everyone off. You'll get messages about unclean shutdown, but no data should be lost. The "service" scripts don't do that though. You'll need to do something like this instead, presuming you start as root:

su postgres
pg_ctl -D /var/lib/pgsql/data -m immedate stop

--
Greg Smith, 2ndQuadrant US greg@xxxxxxxxxxxxxxx Baltimore, MD
PostgreSQL Training, Services and Support  www.2ndQuadrant.us
Author, "PostgreSQL 9.0 High Performance"    Pre-ordering at:
https://www.packtpub.com/postgresql-9-0-high-performance/book


--
Sent via pgsql-admin mailing list (pgsql-admin@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin


[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux