On 8/17/07, Lizard Lizard <[EMAIL PROTECTED]> wrote:> > SEVERE: StandardServer.await: create[8005]: > java.net.BindException: Address already in use: JVM_Bind
> > It claims the address is already in use, but netstat shows nothing on > that address. Stopping the apache server itself did not change this. I > am not sure what else might be running. The log shows the same error > as before. How about 8005? I *think* that is what might be the problem. If you do a 'netstat -nb', it will also include which process is using which port. A default Tomcat install usually listens on 3 ports: 8005 - The shutdown port, which when sent the correct command (usually SHUTDOWN) kills the Tomcat process. 8009 - The AJP listener, which is used when integrating with Apache httpd. 8080 - The http listener, which is the built in web server if you are going to use AJP. You can change any of these by editing $CATALINA_HOME/conf/server.xml ($CATALINA_HOME = <tomcat install directory>) -- brian --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]