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.<init>(ServerSocket.java:185)
此异常的原因是服务器端口被占用
其解决办法包括以下两种:
一:更改服务器的端口号;
二:关闭占用当前占用该端口的进程
2、更改服务器端口号
到tomcat目录下的把conf文件夹下的server.xml文件中,找到
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
将该端口修改一下便可
<Connector port="8088" protocol="AJP/1.3" redirectPort="8443" />
3、关闭当前占用该端口的进程
1)首先进入命令行 查看端口是否被占用
使用命令: netstat -ano
我的服务器的端口是8080
此端口已被PID为43296的进程占用
2)通过任务管理器或taskkill程序结束PID为43296的进程。
taskkill /PID 43296