nginx 如何检测配置文件的正确性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 如何检测配置文件的正确性相关的知识,希望对你有一定的参考价值。

首先执行命令找到nginx路径,
ps aux | grep nginx;
如nginx路径为;
/usr/local/nginx/sbin/nginx;

contos 下面查看 nginx配置是否OK,

/usr/local/nginx/sbin/nginx -t;

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok;
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful;

windows 下面查看 在D:\\phpStudy\\nginx 在这个目录使用Shift + S鼠标右键出现下面页面就打开了cmd窗口 必须要没有选中文件才可以出现。

参考资料

博客.博客[引用时间2018-1-20]

参考技术A 用参数-t
nginx -t
如果返回ok,用 -s reload 重新加载配置文件本回答被提问者和网友采纳

php-fpm 配置文件检测

用过 Nginx 的兄弟都知道,修改 Nginx 配置文件之后,可以使用

nginx -t 

来检测配置文件是否有语法错误。

今天配置 opcache 的时候,发现 php-fpm 也可以检测 php-fpm.conf , php.ini 等配置文件的正确与否。

sudo php-fpm7.0 -t
[28-Dec-2018 08:57:02] NOTICE: configuration file /etc/php/7.0/fpm/php-fpm.conf test is successful

sudo php-fpm7.0 -t
Fri Dec 28 09:03:22 2018 (3365): Fatal Error Zend OPcache cannot allocate buffer for interned strings

没有问题之后,就可以重启 fpm 服务了。

Fatal Error Zend OPcache cannot allocate buffer for interned strings

这个错误的原因是,我把 interned_strings_buffer 的大小设置成了等于 memory_consumption,而 interned_strings_buffer 的配置理论上应该比 memory_consumption 小。

[opcache]
opcache.enable=1
opcache.memory_consumption=64
opcache.interned_strings_buffer=4    // 原来为 64
opcache.max_accelerated_files=2000
opcache.validate_timestamps=0
opcache.save_comments=1
opcache.fast_shutdown=1

以上是关于nginx 如何检测配置文件的正确性的主要内容,如果未能解决你的问题,请参考以下文章

php-fpm 配置文件检测

Nginx常用命令(启动/重启/停止/测试配置文件/重新加载配置文件)

如何正确配置Nginx + PHP

如何正确配置Nginx + PHP

Docker + Django + Vue.js + Webpack 如何正确配置 nginx?

Nginx——相关命令