Facing some issues regarding tomcat startup and shutdown on ubuntu 10.04

后端 未结 7 895
暖寄归人
暖寄归人 2021-02-03 23:16

I am facing some issues regarding tomcat startup and shutdown.

I am using

  1. Tomcat v.6.0.32 (using the extracted the bundle downloaded from Apache website a
7条回答
  •  野性不改
    2021-02-04 00:08

    The problem is caused because the address you use to start tomcat (in normal or debug mode) is already taken by another process.

    You need to check the ports you are using in the you conf file (e.g. your_TOMCAT_HOME_DIR_/conf/server.xml), to see if they are not already used

    Here you can look at the port used for

    • starting Tomcat: default value 8080
    • stopping Tomcat: default value 8005
    • using with AJP protocoll: default value 8009

    and if you are using Tomcat in debug mode (through jdpa or jdwp ), please make sure to use a different port than all the previous configured ports

提交回复
热议问题