Re: real and effective user ids must match

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: david(dot)lao(at)sharpasia(dot)com(dot)mo
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-admin(at)postgresql(dot)org
Subject: Re: real and effective user ids must match
Date: 2006-09-15 03:37:51
Message-ID: 20060915033750.GA1374@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Fri, Sep 15, 2006 at 11:13:06AM +0800, david(dot)lao(at)sharpasia(dot)com(dot)mo wrote:
> Thanks, I will try to upgrade new viersion, the ouput of <su -l postgres -s /bin/sh -c "/usr/bin/pg_ctl -D $PGDATA -p /usr/bin/postmaster start> is
> <
> postmaster successfully started
> /usr/bin/postmaster: real and effective user ids must match

The postmaster still thinks it's running setuid; this error appears
to be coming from backend/main/main.c (excerpt from the 7.2.2 source
code):

if (getuid() != geteuid())
{
fprintf(stderr, gettext("%s: real and effective user ids must match\n"),
argv[0]);
exit(1);
}

Can you start the postmaster without using pg_ctl? Please post the
output of the following commands (make sure PGDATA is set for the
second one):

su -l postgres -s /bin/sh -c id
su -l postgres -s /bin/sh -c "/usr/bin/postmaster -D $PGDATA"

What OS are you running?

> the problem start after I restart the postgres service, there are nothing
> change in postmaster since last time.

When was the last time you successfully started the postmaster the
same way you're trying now? How long had you been running PostgreSQL
without any problems? If it used to work then something has changed.

--
Michael Fuhr

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message david.lao 2006-09-15 03:56:18 Re: real and effective user ids must match
Previous Message david.lao 2006-09-15 03:13:06 Re: real and effective user ids must match