12 2021 档案

摘要:1. 找出占用端口8091的进程 netstat -ano | findstr 8091 发现是13052这个进程占用了 2. 根据进程号找到进程名称 tasklist | findstr 13052 3. 杀死 taskkill -PID <进程号> -F //强制关闭某个进程 阅读全文
posted @ 2021-12-20 18:45 lc还能code 阅读(114) 评论(0) 推荐(0) 编辑