BUG #1110: psql -h localhost consults the nameservice

Started by PostgreSQL Bugs Listabout 22 years ago4 messagesbugs
Jump to latest
#1PostgreSQL Bugs List
pgsql-bugs@postgresql.org

The following bug has been logged online:

Bug reference: 1110
Logged by: Michael Enke

Email address: michael.enke@wincor-nixdorf.com

PostgreSQL version: 7.4

Operating system: Linux

Description: psql -h localhost consults the nameservice

Details:

If I call "psql -h localhost" it is very slow
compared to "psql -h 127.0.0.1" since for "localhost"
the nameservice is consulted.

It is reproducable best in a loop. Call 50 times:
"psql -h localhost" takes 6 seconds
"psql -h 127.0.0.1" takes 0.6 seconds
This was not the case for psql from version 7.3
May be this has something to do with changes for IP v6.

For any mail to my email address, please include
in the subject line the keyword
_no_spam_

Thank you.

#2Bruce Momjian
bruce@momjian.us
In reply to: PostgreSQL Bugs List (#1)
Re: BUG #1110: psql -h localhost consults the nameservice

PostgreSQL Bugs List wrote:

The following bug has been logged online:

Bug reference: 1110
Logged by: Michael Enke

Email address: michael.enke@wincor-nixdorf.com

PostgreSQL version: 7.4

Operating system: Linux

Description: psql -h localhost consults the nameservice

Details:

If I call "psql -h localhost" it is very slow
compared to "psql -h 127.0.0.1" since for "localhost"
the nameservice is consulted.

It is reproducable best in a loop. Call 50 times:
"psql -h localhost" takes 6 seconds
"psql -h 127.0.0.1" takes 0.6 seconds
This was not the case for psql from version 7.3
May be this has something to do with changes for IP v6.

Odds are your nameserver is messed up. Try:

host localhost

and see if that is slow. I bet it is.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: PostgreSQL Bugs List (#1)
Re: BUG #1110: psql -h localhost consults the nameservice

"PostgreSQL Bugs List" <pgsql-bugs@postgresql.org> writes:

If I call "psql -h localhost" it is very slow
compared to "psql -h 127.0.0.1" since for "localhost"
the nameservice is consulted.

This is not a bug; it's supposed to do that. If you don't like it,
reconfigure your name service (see /etc/nsswitch.conf and /etc/resolv.conf).

regards, tom lane

#4Michael Enke
michael.enke@wincor-nixdorf.com
In reply to: PostgreSQL Bugs List (#1)
Re: BUG #1110: psql -h localhost consults the nameservice

Tom Lane wrote:

"PostgreSQL Bugs List" <pgsql-bugs@postgresql.org> writes:

If I call "psql -h localhost" it is very slow
compared to "psql -h 127.0.0.1" since for "localhost"
the nameservice is consulted.

This is not a bug; it's supposed to do that. If you don't like it,
reconfigure your name service (see /etc/nsswitch.conf and /etc/resolv.conf).

regards, tom lane

Ok, I'm not sure if this is a bug or not.
But definitively for postgresql version 7.3.3 on RedHat Linux,
for "localhost" it was not contacting the name service.
This difference I noticed.

Regards,
Michael