H all,
am getting below error while trying to access one click application in tomcat logs.
INFO: Initializing ProtocolHandler ["http-bio-8080"]
Sep 15, 2016 3:44:03 PM org.apache.coyote.AbstractProtocol init
SEVERE: Failed to initialize end point associated with ProtocolHandler ["http-bio-8080"]
java.net.BindException: Address already in use <null>:8080
When starting spectro server, am seeing below error.
Failed to connect to CORBA Naming Service on corbaloc::sdcsrvems002:14006/NameService, will retry in 5 seconds
please help to fix. spectrum : 9.4.2.1 server: solaris 10
Hi,
It looks like some process has still bound the socket on port 8080.
I don't know if there's an equivalent to lsof on Solaris, but on a linux host i would do something like:
lsof -i -Pn | grep 8080
to identify the process that is currently binding the socket on the port and shut down / terminate the process.
Maybe there's an "old" instance of the tomcat still running, or some other process binds the port due to some misconfiguration.