DRP问题集结(二)---【Error】JavaWeb: 严重: Failed to initialize end point associated with ProtocolHandler ["ht

              问题一:  Tomcat无法启动,报错java.lang.NoClassDefFoundError: org/apache/juli/logging/LogFactory


          问题二:【Error】JavaWeb: 严重: Failed to initialize end point associated with ProtocolHandler ["http-bio-8080"]


          问题三:The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path


        我 在MyEclipse中启动Tomcat时出现错误,错误信息如下:


          严重: Failed to initialize end point associated with ProtocolHandler ["http-bio-8080"]  

    这个问题主要是因为你的端口号已被其他进程占用,所有你需要重新设置你的端口号,如图:

     DRP问题集结(二)---【Error】JavaWeb: 严重: Failed to initialize end point associated with ProtocolHandler ["ht_第1张图片

      这个文件中我们做如下修改:     

 <Connector port="8124" protocol="HTTP/1.1" 
               connectionTimeout="20000" 
               redirectPort="8443" />
      我们只要把port改为现在没有用过的即可,那有人说“我不修改端口号,也可以正常访问,但每次重新就会报这个严重警告,这是怎么回事儿?”

        其实这个原因是因为你重启的时候没有退出端口,在这种情况下你可以关闭tomcat,在任务管理器中结束“javax.exe”进程,这样再重启就不会有问题了。

你可能感兴趣的:(tomcat启动时报错)