FW: Re: Exception "The connection attempt failed." (didn't find anything

From: "Pedro n/a" <napalmblood(at)hotmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: FW: Re: Exception "The connection attempt failed." (didn't find anything
Date: 2005-04-09 02:18:42
Message-ID: BAY18-F28E1A117197AC310688642BA300@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

I'm ashamed, the problem was exactly there!

I'm using a FreeBSD 5.4#PRE-RELEASE box and I was editing the 'hosts' file
the other day, experimenting some things with samba just when I forgot to
uncomment some tests I did... Don't know where I was with my mind!!!

Thanks again!
Pedro

From: Oliver Jowett <oliver(at)opencloud(dot)com>
To: Pedro n/a <napalmblood(at)hotmail(dot)com>
CC: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: [JDBC] Exception "The connection attempt failed." (didn't find
anything elsewhere)
Date: Sat, 09 Apr 2005 11:02:26 +1200

Pedro n/a wrote:

> I'm quite new at java and I was just following a tutorial when I bumped
> with a horrible exception. [...]

> Caused by: java.net.UnknownHostException: localhost
> at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:153)

This is the underlying problem. If you do not specify a host to connect
to, the JDBC driver defaults to connecting to localhost, but for some
reason your system cannot resolve localhost.

The solution is to fix hostname resolution on your system. I can't give
you any suggestions as to how to do this as you didn't say anything
about the OS that you are using, but something is pretty broken if you
can't resolve localhost.

A workaround might be to provide an explicit IP address in the driver
URL, e.g. instead of 'jdbc:postgresql:databasename' use something like
'jdbc:postgresql://127.0.0.1/databasename'.

-O

_________________________________________________________________
Chegou o que faltava: MSN Acesso Grátis. Instale Já!
http://www.msn.com.br/discador

Browse pgsql-jdbc by date

  From Date Subject
Next Message Andras Kadinger 2005-04-10 04:10:52 implementing asynchronous notifications
Previous Message Kris Jurka 2005-04-08 23:06:47 Re: Updatable resultset with join query.