/etc/nginx/nginx.conf:86中的未知指令“ stream”


11

我有,nginx/1.12.0并且根据文件它包含stream模块。我已经使用以下命令安装了nginx。

sudo add-apt-repository ppa:nginx/stable
sudo apt-get update
sudo apt-get install nginx
nginx -v
nginx version: nginx/1.12.0

我试图在添加流指令nginx.conf

stream {
    upstream sys {
        server 172.x.x.x:9516;
        server 172.x.x.x:9516;
    }
    server {
        listen 9516 udp;
        proxy_pass sys;
    }
}

但是当我重新启动nginx时,nginx日志中出现以下错误

unknown directive "stream" in /etc/nginx/nginx.conf:86

nginx -V output
nginx version: nginx/1.12.0
built with OpenSSL 1.0.1f 6 Jan 2014
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector --param=ssp                                                                                          -buffer-size=4 -Wformat -Werror=format-security -fPIC -D_FORTIFY_SOURCE=2' --w                                                                                          ith-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now -fPIC'                                                                                           --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/                                                                                          var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path                                                                                          =/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/                                                                                          modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-p                                                                                          ath=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-                                                                                          scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi                                                                                           --with-debug --with-pcre-jit --with-http_ssl_module --with-http_stub_status_m                                                                                          odule --with-http_realip_module --with-http_auth_request_module --with-http_v2                                                                                          _module --with-http_dav_module --with-http_slice_module --with-threads --with-                                                                                          http_addition_module --with-http_geoip_module=dynamic --with-http_gunzip_modul                                                                                          e --with-http_gzip_static_module --with-http_image_filter_module=dynamic --wit                                                                                          h-http_sub_module --with-http_xslt_module=dynamic --with-stream=dynamic --with                                                                                          -stream_ssl_module --with-stream_ssl_preread_module --with-mail=dynamic --with                                                                                          -mail_ssl_module --add-dynamic-module=/build/nginx-ZgS12K/nginx-1.12.0/debian/                                                                                          modules/nginx-auth-pam --add-dynamic-module=/build/nginx-ZgS12K/nginx-1.12.0/d                                                                                          ebian/modules/nginx-dav-ext-module --add-dynamic-module=/build/nginx-ZgS12K/ng                                                                                          inx-1.12.0/debian/modules/nginx-echo --add-dynamic-module=/build/nginx-ZgS12K/                                                                                          nginx-1.12.0/debian/modules/nginx-upstream-fair --add-dynamic-module=/build/ng                                                                                          inx-ZgS12K/nginx-1.12.0/debian/modules/ngx_http_substitutions_filter_module

我搜索了此错误,有些人说我必须单独安装/配置此模块。有人说它带有nginx1.12.0版本。有人可以建议我如何在已安装的模块上安装/配置该模块nginx吗?

关于VG


Nginx是否从流模块开始启用?请发布的输出nginx -V
Joe Brailsford

谢谢Joe,所以我已经更新了问题并粘贴了我的nginx -V输出。
user3332404

在/ usr / lib目录/ nginx的/模块,我可以看到以下几个模块ngx_http_image_filter_module.so ngx_http_geoip_module.so ngx_http_echo_module.so ngx_http_dav_ext_module.so ngx_http_auth_pam_module.so ngx_stream_module.so ngx_mail_module.so ngx_http_xslt_filter_module.so
user3332404

Answers:


21

流模块将作为动态添加,如下所示:

--with-stream=dynamic

您需要使其“静态”-因此直接加载模块。为此,请在nginx.conf的最顶部添加以下内容:

load_module /usr/lib/nginx/modules/ngx_stream_module.so;

然后:

nginx -t

如果一切顺利:

nginx -s reload
service nginx restart

编辑:

-s signal' Send signal to the master process. The argument signal can be one of: stop, quit, reopen, reload. The following table shows the corresponding system signals.

stop' SIGTERM
quit' SIGQUIT
reopen' SIGUSR1
reload' SIGHUP

太棒了!! 没有更多的错误。非常感谢Joe,您是我的救星.BTW在运行此工具时,nginx -s实际上是什么?我得到以下错误nginx:选项“ -s”需要参数
user3332404

我编辑了答案,错过了一点。nginx -s reload重新加载主进程-服务重启基本上做同样的事情。
Joe Brailsford

什么是stream模块会怎么做?它的用途是什么
Satish

@JoeBrailsford有什么方法可以自动执行此过程吗?bcoz EC2实例对于EBS来说不是永久的,如果可以的话,您也可以解释为什么Steam模块需要静态才能工作
Bikash

6

没有足够的声誉来评论乔的答案,所以在这里写:

在CentOS7上,模块路径位于lib64文件夹下。因此,您需要添加以下行:

load_module '/usr/lib64/nginx/modules/ngx_stream_module.so';

2

nginx在运行于AWS EC2实例的Amazon Linux上遇到了此问题,并且我的/usr/lib64/nginx/modules/文件夹为空。

我用以下命令安装了模块yum

yum install nginx-mod-stream

stream指令现在无需更改即可工作nginx.conf

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.