linux
lsof -i 查看端口状态
kill -9 PID 关闭端口
windows
netstat -ano|findstr "{$port}"
taskkill -F -PID {$PID};
tasklist|findstr "{$PID}" 查看端口使用程序