当前位置: 代码迷 >> 综合 >> 错误 Failed to initialize end point associated with ProtocolHandler [http-apr-80]
  详细解决方案

错误 Failed to initialize end point associated with ProtocolHandler [http-apr-80]

热度:50   发布时间:2023-12-24 15:30:58.0
错误
Failed to initialize end point associated with ProtocolHandler ["http-apr-80"]
出现这种原因主要是8080端口被占用了。
解决1:
打开任务管理器看看里面有没有javaw的线程,把它关了再重新启动tomcat看看。
解决2:
修改tomcat /conf /server.xml 文件
<Connector port="8888" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />
  相关解决方案