找出Window/Linux下 占用端口的进程2021-07-17 11:52:21Windows 使用命令: netstat -ano|find " :端口号"|find "LISTEN" 任务管理查找ip Windows上根据进程名 杀死进程,如下命令: taskkill /F /IM hugo.exe Windows上根据进程ID 杀死进程,如下命令: taskkill /F /PID 3306 Linux 命令如下: netstat -anp|grep ":3306" |grep LISTEN 找出Window/Linux下 占用端口的进程上一篇:AOP和IOC的区别下一篇:使用Servlet3.0提供的API实现文件上传到指定位置