document.write("");

查看端口进程ID 删除进程 win linux

linux :

netstat -ntulp | grep 端口号

执行上一句,得到进程ID

kill -9 进程ID

win:

netstat -aon|findstr 端口号

执行上一句,得到进程ID

taskkill /f /pid 进程ID

posted @ 2022-10-26 15:18  人间春风意  阅读(35)  评论(0编辑  收藏  举报