标签:list 16px containe tst tail contain 指定 https html
各端口状态解释:
解决程序占用某端口问题?
C:\>netstat -ano
2.查看指定端口的占用情况
C:\>netstat -aon|findstr
"3692"
3.查看PID对应的进程命令
C:\>tasklist|findstr "3692"
4.结束该进程
C:\>taskkill /f /t /im nvcontainer.exe
具体命令:
netstat -ano
netstat -aon|findstr "3692"
tasklist|findstr "3692"
taskkill /f /t /im *.exe
https://blog.csdn.net/qq1124794084/article/details/51690981
https://www.cnblogs.com/jiu0821/p/7994838.html Linux中netstat解释参考
http://blog.sina.com.cn/s/blog_aed8ab440102w2uz.html
标签:list 16px containe tst tail contain 指定 https html
原文地址:https://www.cnblogs.com/goodyunl/p/10801172.html