- 查看端口占用
shell
netstat -ano | findstr "8080"
- 查看占用进程
shell
tasklist | findstr "4664"
- 关闭占用进程
shell
taskkill /f /t /im httpd.exe