这些行:
SEVERE: Failed to initialize end point associated with ProtocolHandler ["ajp-bio-8009"]java.net.BindException: Address already in use: JVM_Bind <null>:8009
表示端口8009上已经有服务在运行。tomcat(带有ajp)已经在运行吗?
如果需要在8009上运行的服务,则可以将server.xml中的连接器配置更改为如下所示:
<Connector port="8089" protocol="AJP/1.3" redirectPort="8443" />



