用sys启动Tomcat服务器报错:
Several ports (8005, 8080, 8009) required by Tomcat v5.5 Server at localhost are 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同时打开,通过任务管理器关闭一个后可以从正常使用。
首先试了在任务管理器里关闭了oracle数据库的任务,失败;
之后按着网上的方法再任务管理器中关闭javac,结果没有找到。
最后在cmd中输入netstat -ano,查看端口号占用程序,在任务管理器的详细信息中对比pid,查出占用端口号的程序关闭。
实际上最后记得那个java程序是打开tomcat是用管理员身份同意打开的。
参考:百度。
来源:https://www.cnblogs.com/cangyanluozhao/p/7884200.html