cmd常用命令
Posted weitung
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cmd常用命令相关的知识,希望对你有一定的参考价值。
作为个人记录持续更新
查看被占用端口
netstat -ano|findstr "8081"
检查80端口是否被占用的命令是
netstat -ano | findstr 0.0.0.0:80 或 netstat -ano | findstr "80"
查找nginx服务是否运行
tasklist /fi "imagename eq nginx.exe"
重启nginx
nginx -s reload
以上是关于cmd常用命令的主要内容,如果未能解决你的问题,请参考以下文章