windows下nginx.exe启动一闪而过(具体解决方法)

运行“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.

Measure

Measure

  • A+
所属分类:it杂谈 时间:2020-08-01