//查找出佔用8086端口進程的ID netstat -nao | findstr 8086 //本機輸出效果爲: TCP 0.0.0.0:8086 0.0.0.0:0 LISTENING 804 //很顯然,進程ID是804 //找出ID爲804的進程名 tasklist | find 804 //本機輸出效果爲: emule.exe 804 Console 1 82,068 K //哈哈,原來 是emule佔用了個人8086端口。