windows下nginx启动一闪而过(原因以及查看和解决的办法)「建议收藏」

大家好,又见面了,我是你们的朋友全栈君。

解决问题的思路清晰比确切解决的办法更加有效

原因:

这是80端口被占用的缘故,修改下端口即可

得出此原因的方法:

运行“nginx.exe”文件即可,运行后,界面一闪而过。

这是查看log日志,就能得到原因

2018/08/23 21:43:34 [emerg] 16612#13696: bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions)

80:端口被占用

具体的解决办法:

解决的方法有很多种,但是不建议使用修改注册表,因为不懂注册表东西 怕改坏

以下修改配置文件,修改成如下

目录:文件conf/nginx.conf

server {

listen 8888;

server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {

root html;

index index.html index.htm;

}

这时候再点击nginx,这时候会出现是否出现安全提示,然后在浏览器中输入127.0.0.1:8888

同理输入localhost就可以了

看到下面页面即说明成功。

Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer tonginx.org.

Commercial support is available atnginx.com.

Thank you for using nginx.

参考http://www.360doc.com/content/12/0615/23/15643_218433480.shtml

Measure

Measure

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/203516.html原文链接:https://javaforall.cn

未经允许不得转载:木盒主机 » windows下nginx启动一闪而过(原因以及查看和解决的办法)「建议收藏」

赞 (0)

相关推荐

    暂无内容!