Several ports (8081, 8009) required by Tomcat v6.0 Server at localhost are already in use.

Tomact报错:Several ports (8081, 8009) required by Tomcat v6.0 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).
命令提示符里输入 netstat -ano|findstr 8081
显示占用了8081端口的进程为18660
Several ports (8081, 8009) required by Tomcat v6.0 Server at localhost are already in use.
输入taskkill /pid 18660 /f
结束此进程