美文网首页
启动nginx 不成功bind() to 0.0.0.0:443

启动nginx 不成功bind() to 0.0.0.0:443

作者: SevenLonely | 来源:发表于2017-08-07 09:50 被阅读0次

    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 的端口。

    1. 解决办法:

    运行 cmd, 输入

    netstat -aon|findstr "443"
    

    找到 0.0.0.0:443,找到 PID,在任务管理器结束进程

    相关文章

      网友评论

          本文标题:启动nginx 不成功bind() to 0.0.0.0:443

          本文链接:https://www.haomeiwen.com/subject/uqeolxtx.html