Still having the same Tomcat problem

Virgil Champlin champlin at stupidog.org
Tue May 30 09:21:55 PDT 2006


Richard Cooper wrote:
> Virgil Champlin wrote:
>> What does
>>
>> sockstat | grep 8005
>>
>> say?  I haven't seen your previous posts so forgive me if you've 
>> answered this.  -virgil
> 
> It returns nothing.
> ...

Yes, your error would indicate that.  I think a port collision gives an 
"address already in use" error.  Here is the code that is failing.

         // Set up a server socket to wait on
         ServerSocket serverSocket = null;
         try {
             serverSocket =
                 new ServerSocket(port, 1,
                                  InetAddress.getByName("127.0.0.1"));
         } catch (IOException e) {
             log.error("StandardServer.await: create[" + port
                                + "]: ", e);
             System.exit(1);
         }
I wonder what InetAddress.getByName("127.0.0.1"); returns in your case? 
  I have the same Tomcat running on a 6.1-RELEASE i386, no problem. 
I'll try it on an SMP amd64 in a few hours.  -virgil

> I hope you don't mind me ccing this to the list - it might be useful.
> 

Not at all.  It just isn't very helpful yet.  Sorry.  -virgil


More information about the freebsd-java mailing list