OSDN Git Service

Make it reasonably safe to use pg_ctl to start the postmaster from a boot-time
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 27 Aug 2009 16:59:38 +0000 (16:59 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 27 Aug 2009 16:59:38 +0000 (16:59 +0000)
commit8f5500e6bdb4d42ea9620b0f515671be7d681bf6
treeee566993694a99187df4837355addbf633ae3372
parent0e3f0cbddcb6da390c1accc5fc6af4eedd33b6a2
Make it reasonably safe to use pg_ctl to start the postmaster from a boot-time
script.

To do this, have pg_ctl pass down its parent shell's PID in an environment
variable PG_GRANDPARENT_PID, and teach CreateLockFile() to disregard that PID
as a false match if it finds it in postmaster.pid.  This allows us to cope
with one level of postgres-owned shell process even with pg_ctl in the way,
so it's just as safe as starting the postmaster directly.  You still have to
be careful about how you write the initscript though.

Adjust the comments in contrib/start-scripts/ to not deprecate use of
pg_ctl.  Also, fix the ROTATELOGS option in the OSX script, which was
indulging in exactly the sort of unsafe coding that renders this fix
pointless :-(.  A pipe inside the "sudo" will probably result in more
than one postgres-owned process hanging around.
contrib/start-scripts/freebsd
contrib/start-scripts/linux
contrib/start-scripts/osx/PostgreSQL
src/backend/utils/init/miscinit.c
src/bin/pg_ctl/pg_ctl.c