1.启动nginx 访问地址发现没有反应
然后试了试指令
nginx -s reload
发现报
nginx: [error] OpenEvent("Global\ngx_reload_5912") failed (2: The system cannot find the file specified)
这个意思是nginx 没有启动成功。
2.然后我又试了试
nginx
发现报nginx: [emerg] bind() to 0.0.0.0:443 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions)
这是由于其他进程占用了nginx 的端口。
- 解决办法:
运行 cmd, 输入
netstat -aon|findstr "443"
找到 0.0.0.0:443,找到 PID,在任务管理器结束进程
网友评论