1. 程式人生 > >關於端口占用問題的處理

關於端口占用問題的處理

kill 分享 stat 關閉 nds 問題 輸入 .com http

寫個項目端口出現占用問題port: 801 already in use!

技術分享

解決方法:

1.打開cmd,輸入指令 netstat -aon|findstr 801 找到占用801端口的進程

2.再輸入指令 taskkill -f -pid 11212 關閉占用801端口的進程,我的項目占用的進程的ID為11212

技術分享

關於端口占用問題的處理