windows下nginx启动一闪而过(原因以及查看和解决的办法) - Go语言中文社区

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

 

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/qq_37457202/article/details/82016374
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-03-06 22:07:38
  • 阅读 ( 3185 )
  • 分类:Go Web框架

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢