日常情况一:
- 80端口被占用,害我Nginx无法启动
netstat -ano | findstr 80
查看80端口占用情况,查到是pid 4在搞事
taskkill /pid 4 /F
杀掉pid 4的进程,一般都杀不掉哈哈
net stop http
杀不掉算了,开大,停用http服务,解决80端口占用。
net start http
netstat -ano | findstr 80
查看80端口占用情况,查到是pid 4在搞事
taskkill /pid 4 /F
杀掉pid 4的进程,一般都杀不掉哈哈
net stop http
杀不掉算了,开大,停用http服务,解决80端口占用。
net start http