Re: When starting postgres, it hangs like it is still connected to stdout

From: Raymond O'Donnell <rod(at)iol(dot)ie>
To: Susan Cassidy <susan(dot)cassidy(at)decisionsciencescorp(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: When starting postgres, it hangs like it is still connected to stdout
Date: 2014-01-07 19:59:22
Message-ID: 52CC5C9A.9080907@iol.ie
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 07/01/2014 19:47, Susan Cassidy wrote:
> When I start postgres using postgres -D $PGDATA, it hangs, and I see
> that postgres and all the other attendant processes are running, but I
> never get my prompt back.
>
> If I hit ctl/C, postgres ends running.
>
> I can't seem to figure out why.

You're running the postgres program directly in the foreground, rather
than as a daemon. This is handy for trying things out, but you'll
generally want to start and stop it using the package's control scripts.
On Debian, for example:

/etc/init.d/postgresql start

or

service postgresql start

Or you can use pg_ctl:

http://www.postgresql.org/docs/9.2/static/app-pg-ctl.html

HTH,

Ray.

--
Raymond O'Donnell :: Galway :: Ireland
rod(at)iol(dot)ie

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Joe Van Dyk 2014-01-07 20:00:20 Re: When starting postgres, it hangs like it is still connected to stdout
Previous Message Joe Van Dyk 2014-01-07 19:55:08 Re: Is there a way to return "true"/"false" string for boolean type?