Re: SIGHUP the postmaster

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Mark Seftel" <mark(at)trustemail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: SIGHUP the postmaster
Date: 2002-09-14 22:05:42
Message-ID: 20477.1032041142@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

"Mark Seftel" <mark(at)trustemail(dot)com> writes:
> I need to changes to pg_hba.conf and now need to "SIGHUP the postmaster"
> Does anyone no how to do this.

The hard way is to determine the postmaster's PID (eg, by looking at ps
output) and then do

kill -HUP postmaster_PID

The easier way is to do "pg_ctl reload" which does this for you.
You need to have $PGDATA set in your environment to make it work
conveniently, though.

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Mark Seftel 2002-09-14 22:06:18 SIGHUP the postmaster
Previous Message Rod Kreisler 2002-09-14 22:05:20 Re: SIGHUP the postmaster