0
点赞
收藏
分享

微信扫一扫

windows下nginx启动一闪而过(原因以及查看和解决的办法)

Yaphets_巍 2022-03-15 阅读 37


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

原因:

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

得出此原因的方法:

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

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

 windows下nginx启动一闪而过(原因以及查看和解决的办法)_配置文件

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就可以了

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

windows下nginx启动一闪而过(原因以及查看和解决的办法)_html_02

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 to​​nginx.org​​.

Commercial support is available at​​nginx.com​​.

Thank you for using nginx.

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

Measure

Measure


举报

相关推荐

0 条评论