Re: [INTERFACES] fe_setauthsvc: invalid name. Ignoring... ERROR

From: "Dutt H Kalapatapu" <dutt(at)eudoramail(dot)com>
To: "Clint Forgy" <mo(at)midwestonline(dot)com>
Cc: pgsql-interfaces(at)postgreSQL(dot)org
Subject: Re: [INTERFACES] fe_setauthsvc: invalid name. Ignoring... ERROR
Date: 1999-08-16 06:09:27
Message-ID: GFLGPFOHCKJEOAAA@shared1-mail.whowhere.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces


I finally figured out why I am gettting an authentication failure. The problem was my previous code has the declaration for PgDatabase like this.

PgDatabase * myDatabase = new PgDatabase("dbname=template1");

I was running this code on solaris and everything was working fine. I looked at the PgDatabase class and figured out that we no longer need that 'dbname='. Now my code looks like this:

PgDatabase * myDatabase = new PgDatabase("template1");

and I could now run this from the command line. I am intersted in the solution which you had for apache since I will finally integrate the code with apache.

Thanks in advance
-Dutt

---

-Dutt H Kalapatapu
www.hydbazaar.com

On Mon, 16 Aug 1999 03:37:19 Clint Forgy wrote:
>Dutt H Kalapatapu wrote:
>>
>> Some body already had this problem( mo(at)midwestonline(dot)com). I am
>> trying to connect to database using PgDatabase interface and I get
>> an error saying "fe_setauthsvc: invalid name, ignoring..". I thought
>> this was permission problem so I made myself the superuser of the
>> database and ran initdb and I still get this error.
>
>Hi Dutt,
>
>That was me having that problem. I was trying to use postgres via cgi
>for some dynamic content on a virtually hosted system. I was having
>that problem with cgi apps *only* but not the command line. I can't
>remember the exact fix off the top of my pointy head but Tom Lane
>suggested the fix. I remember that it had something to do with apache
>running as user nobody, and when the cgi app started, the perl
>environment didn't have the correct userid in its environment. I can go
>through my notes if you're interested. It sounds somewhat related, but
>since you're having the same problem at the command line, I'm not sure
>which way to point you.
>
>--
>Clint Forgy
>"Paving the Information Gravel Road for the Midwest"
>http://www.midwestonline.com
>ICQ: 8443021 Make Code, Not War
>
>

Join 18 million Eudora users by signing up for a free Eudora Web-Mail account at http://www.eudoramail.com

Browse pgsql-interfaces by date

  From Date Subject
Next Message Peter Mount 1999-08-16 12:07:37 Re: [PATCH] PostgreSQL JDBC
Previous Message Clint Forgy 1999-08-16 03:37:19 Re: [INTERFACES] fe_setauthsvc: invalid name. Ignoring... ERROR