Problem with tomcat and getLocalHost exception
Posted
by xain
on Server Fault
See other posts from Server Fault
or by xain
Published on 2010-02-03T12:21:57Z
Indexed on
2010/03/08
3:32 UTC
Read the original article
Hit count: 560
I'm running a Linux server named S1 in a "cloud" server, and when tomcat 6.0.24 starts, I get the exception:
org.apache.catalina.connector.Connector pause
SEVERE: Protocol handler pause failed
java.net.UnknownHostException: S1: S1
at java.net.InetAddress.getLocalHost(InetAddress.java:1353)
at org.apache.jk.common.ChannelSocket.unLockSocket(ChannelSocket.java:485)
Which then leads to:
ERROR ehcache.Cache - Unable to set localhost. This prevents creation of a GUID. Cause was: Sjira1: S1
java.net.UnknownHostException: S1: S1
at java.net.InetAddress.getLocalHost(InetAddress.java:1353)
at net.sf.ehcache.Cache.<clinit>(Cache.java:143)
My hosts file is:
127.0.0.1 localhost localhost.localdomain
(valid-ip-address) S1 S1.(valid domain name)
- ping S1 and S1.(valid domain name) return valid ip address
- nslookup S1.(valid domain name) returns valid ip address
- nslookup S1 throws ** server can't find S1: NXDOMAIN
Any ideas about how to fix this ?
Thanks
© Server Fault or respective owner