私は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
私はこのエラーをグーグルで検索しましたが、このモジュールを個別にインストール/構成する必要があると言う人もいます。 nginx
1.12.0リリースに付属していると言う人もいます。誰かが、すでにインストールされているnginx
にこのモジュールをインストール/構成する方法を提案できますか?
よろしくVG
ストリームモジュールは、次のように動的に追加されます。
--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
ジョーの答えをコメントするのに十分な評判がないので、ここに書いてください:
CentOS7では、lib64フォルダーの下にあるモジュールパス。したがって、次の行を追加する必要があります。
load_module '/usr/lib64/nginx/modules/ngx_stream_module.so';
AWS EC2インスタンスで実行されているAmazon Linuxのnginx
でこの問題に遭遇し、/usr/lib64/nginx/modules/
フォルダーが空でした。
yum
でモジュールをインストールしました:
yum install nginx-mod-stream
stream
ディレクティブは、nginx.conf
を変更せずに機能するようになりました。