運維小知識のnginx---nginx配置Jbossクラスタ負荷等化
運維小知識のnginx---nginx配置Jbossクラスタ負荷等化
背景
続いて、前のブログ「运维小知识---CentOS 6.5インストールnginx配置nginx sticky」のインストールが完了した后、残りの仕事は配置ですが、もし私たちがロードバランスsession共有をしたいなら、迂回できない问题ですが、session共有を解决する方法はたくさんあります.私がここで绍介したことはnginx stickyを使って、便利で使いやすいです.
具体的な構成
現在のプロジェクトでどのような状況が発生するかは不明ですが、現在は最も簡単な構成をしています.以下のようにします.http {
include mime.types;
default_type application/octet-stream;
#Proxy_cache_path /usr/local/nginx/NginxTestImgLoglevels=1:2 keys_zone=cache_one:200minactive=1d max_size=30g;
#log_format main '$remote_addr - $remote_user [$time_local]"$request" '
# '$status$body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65; #gzip on;
#
upstream jboss6.2 { #
#server 172.16.21.13:8081 weight=1;# weight , , 。
sticky; # session
server xxx.xx.xx.25:80weight=1;
server xxx.xx.xx.26:80weight=1;
server xxx.xx.xx.27:80weight=1;
}
# Nginx
server {
listen 80;
server_name yyy.yy.yyy.121;
rewrite_log on;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://jboss6.2;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
現在はnginxサーバが1台しか使用されていませんが、ダウンタイムになったらどうすることもできないという問題もしばらく考えていません(nginxクラスタを構成するのは、もちろんこれらは後の話ですが)、筆者は最高の開発は必要に応じて行うもので、技術を誇示するのではなく、過度な設計ではないと信じています.技術のこの道で、聞いたことがあって、見たことがあって、最も重要なのはしたことがあります!
最後に強調したいのは、セッション共有の負荷均衡を解決しないのはごろつきだということだ.筆者はnginx文の中に漏れがあれば、教えてください.
http {
include mime.types;
default_type application/octet-stream;
#Proxy_cache_path /usr/local/nginx/NginxTestImgLoglevels=1:2 keys_zone=cache_one:200minactive=1d max_size=30g;
#log_format main '$remote_addr - $remote_user [$time_local]"$request" '
# '$status$body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65; #gzip on;
#
upstream jboss6.2 { #
#server 172.16.21.13:8081 weight=1;# weight , , 。
sticky; # session
server xxx.xx.xx.25:80weight=1;
server xxx.xx.xx.26:80weight=1;
server xxx.xx.xx.27:80weight=1;
}
# Nginx
server {
listen 80;
server_name yyy.yy.yyy.121;
rewrite_log on;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://jboss6.2;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}