Re: real and effective user ids must match - Mailing list pgsql-admin

From Michael Fuhr
Subject Re: real and effective user ids must match
Date
Msg-id 20060915033750.GA1374@winnie.fuhr.org
Whole thread Raw
In response to real and effective user ids must match  ("Liustech" <david.lao@sharpasia.com.mo>)
Responses Re: real and effective user ids must match  (david.lao@sharpasia.com.mo)
List pgsql-admin
On Fri, Sep 15, 2006 at 11:13:06AM +0800, david.lao@sharpasia.com.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/postmasterstart> 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

pgsql-admin by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: real and effective user ids must match
Next
From: Michael Fuhr
Date:
Subject: Re: real and effective user ids must match