From: | Roland Lauterbach <rlauterbach(at)rolix(dot)de> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Why can't I do this (setup question) |
Date: | 2001-05-20 17:09:05 |
Message-ID: | 9e8tnm$1igf$1@news.tht.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Karl DeBisschop wrote:
> Paul Tomblin wrote:
>>
>> Quoting Tom Lane (tgl(at)sss(dot)pgh(dot)pa(dot)us):
>> > Paul Tomblin <ptomblin(at)xcski(dot)com> writes:
>> > > I've got PostgreSQL 7.1 installed from rpms on a RedHat 6.2 system.
>> > > I want the data directory on a separate partition, so I shut down,
>> > > tar the whole directory into the other directory, mount it, and when
>> > > I start up postgresSQL it says it's up, but I can't connect to any
>> > > databases using psql.
>> > > psql: connectDBStart() -- connect() failed: Connection refused
>> > > Is the postmaster running locally
>> > > and accepting connections on Unix socket
>> > > '/tmp/.s.PGSQL.5432'?
>> > > There is a postmaster running, but no socket in /tmp/
>> >
>> > Odd. Seems unlikely that that has anything to do with your having
>> > moved
>> > the data directory. Any interesting messages in the postmaster log?
>> > Can you connect via TCP?
>>
>> Is there a postmaster log other than what's in /var/log/messages?
>> Because there is nothing useful in there other than a message that it
>> started successfully.
>
> As for your original question, which I missed, I assume you set '-i' in
> postmaster.opts.default.
>
> As for the log issue, you can also set log level in
> postmaster.opts.default
>
What is the version of your Kernel? I'm running PSQL on a 2.2.16-Kernel
without problems. When I updated to 2.4.0 I got problems.
Postgres don't start, though I built it from the source. The error message
is
"IpcSemaphoreCreate: semget(key=1, num=17, 03600) failed: Function not
implemented"
The same message comes when I try to start new compiled Apache.
But if you don't have 2.4-Kernel
try this:
PSQLPREFIX=/usr/local/pgsql
rm -rf $PSQLPREFIX/data
mkdir $PSQLPREFIX/data
chown postgres.daemon $PSQLPREFIX/data
su - postgres -c "$PSQLPREFIX/bin/initdb -D $PSQLPREFIX/data"
Roland
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2001-05-20 17:17:21 | Re: Why can't I do this (setup question) |
Previous Message | Karl DeBisschop | 2001-05-20 13:33:11 | Re: Why can't I do this (setup question) |