nginx启动失败,常见问题分享

打开logs => error.log 文件,查看错误提示。

1、配置文件用文本编辑器打开保存后,会保存为uft-8格式,编码冲突。
2、文件路径不允许存在中文。
3、端口占用。
错误提示:The system cannot find the file specified
4、logs文件下没有nginx.pid文件
错误提示:
[root@localhost sbin]# ./nginx -s reload nginx: [error] open() “/usr/local/nginx/logs/nginx.pid” failed (2: No such file or directory)
解决方法:
[root@localhost nginx]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

你可能感兴趣的:(nginx启动失败,常见问题分享)