一、查看端口PID
netstat -ano|findstr 8080
二、确认端口程序
# DOS
# tasklist|findstr ${PID}

tasklist|findstr 1103
三、强关端口
# DOS
# taskkill /pid ${PID} /F

taskkill /pid 1103 /F