严重: Error initializing endpoint

1、问题

         通过Eclipse启动Tomcat时,抛出异常

信息: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Users\jun\AppData\Local\Genuitec\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\bin;C:\Users\jun\AppData\Local\Genuitec\Common\plugins\com.genuitec.eclipse.easie.tomcat.myeclipse_8.6.0.me201007231647\tomcat\bin
2015-4-1 15:28:24 org.apache.coyote.http11.Http11Protocol init
严重: Error initializing endpoint
java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
at java.net.ServerSocket.bind(ServerSocket.java:319)
at java.net.ServerSocket.(ServerSocket.java:185)

此异常的原因是服务器端口被占用 

        其解决办法包括以下两种:

        一:更改服务器的端口号;
        二:关闭占用当前占用该端口的进程


2、更改服务器端口号

        到tomcat目录下的把conf文件夹下的server.xml文件中,找到
                 
        将该端口修改一下便可
                 


3、关闭当前占用该端口的进程

     1)首先进入命令行 查看端口是否被占用  
          使用命令: netstat -ano

          严重: Error initializing endpoint_第1张图片
          我的服务器的端口是8080
          此端口已被PID为43296的进程占用

      2)通过任务管理器或taskkill程序结束PID为43296的进程。

 taskkill /PID 43296

TASKKILL命令使用大全 http://www.douban.com/note/41129775/

你可能感兴趣的:(Java,工具)