美文网首页
解决Tomact启动时端口被占用的问题

解决Tomact启动时端口被占用的问题

作者: 小睿同学 | 来源:发表于2019-12-31 09:41 被阅读0次
    启动Tomcat时,会提示端口被占用:

    Port 8080 required by Tomcat v8.0 Server at localhost is already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
    翻译:
    本地主机上的Tomcat v8.0服务器所需的端口8080已在使用中。服务器可能已经在另一个进程中运行,或者系统进程正在使用该端口。要启动此服务器,您需要停止另一个进程或更改端口号。

    解决方法(1):结束进程
    • WIN+R → cmd
    • netstat -ano|findstr 8080
      找到PID
    • Ctrl+Alt+Delete → 任务管理器 → 详细信息
    • 找到PID对应的进程
    • 结束进程
    • 这样就可以运行Tomcat了
    解决方法(2):更换端口
    • 找到Tomct的安装路径下的conf文件夹
    • 打开server.xml文件,修改Connector 元素的port属性的值就可以了
    The End

    相关文章

      网友评论

          本文标题:解决Tomact启动时端口被占用的问题

          本文链接:https://www.haomeiwen.com/subject/bwxboctx.html