From: | George Weaver <gweaver(at)shaw(dot)ca> |
---|---|
To: | operationsengineer1(at)yahoo(dot)com, pgsql-novice(at)postgresql(dot)org |
Subject: | Re: shutdown postmaster question |
Date: | 2005-02-24 19:44:24 |
Message-ID: | 009c01c51aa9$40ee6e50$6400a8c0@Dell4500 |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
I have used 2 batch files in the past.
The first was start.bat with the lines
bash pg_ctl start -D /usr/share/postgresql/data -o -i
pause
stop.bat contained:
bash pg_ctl stop -D /usr/share/postgresql/data
----- Original Message -----
From: <operationsengineer1(at)yahoo(dot)com>
To: "George Weaver" <gweaver(at)shaw(dot)ca>; <pgsql-novice(at)postgresql(dot)org>
Sent: Thursday, February 24, 2005 12:27 PM
Subject: Re: [NOVICE] shutdown postmaster question
>
> --- George Weaver <gweaver(at)shaw(dot)ca> wrote:
>
>>
>> You might find starting and stopping postmaster
>> easier by using pg_ctl. Eg
>> in a batch file the following will stop the server:
>>
>> bash pg_ctl stop -D /usr/share/postgresql/data
>>
>> Regards,
>> George
>
> i tried pg_ctl with no luck. i started with
>
> pg_ctl start
>
> but my pgdata environment variable wasn't set and i
> couldn't quickly find out how to set it via the docs.
See -D abvove
> i then tried
>
> pg_ctl /usr/share/postgresql/data start
>
> and received an invalid operation mode error.
>
> i'm not sure how pg_ctl handles the "-i" issue (tcp/ip
> connections) and whether the trailing "&" is required
> using pg_ctl. the docs and my php/pgsql book were
> unclear after an admittedly quick review.
-o is needed to pass options directly to the postmaster e.g. -i
Regards,
Geroge
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2005-02-24 22:10:50 | Re: [NOVICE] Question on TRUNCATE privleges |
Previous Message | Keith Worthington | 2005-02-24 18:35:21 | session_user id |