nginx 부하 균형 상세 설명
부하 균형 (Load balancing) 은 여러 컴퓨터 (컴퓨터 클 러 스 터), 네트워크 연결, CPU, 디스크 드라이브 또는 다른 자원 에 부 하 를 분배 하여 자원 사용 을 최적화 하고 삼투 율 을 최대 화 하 며 응답 시간 을 최소 화 하 는 동시에 과부하 의 목적 을 달성 하 는 컴퓨터 네트워크 기술 이다.
2: 응용 필드
부하 균형 은 주로 웹 사이트, 대형 인터넷 Relay Chat 네트워크, 높 은 데이터 의 파일 다운로드 사이트, NNTP (Network News Transfer Protocol) 서비스 와 DNS 서비스 에 사용 된다.현재 부하 분산 기 는 데이터베이스 서 비 스 를 지원 하기 시 작 했 는데 이것 을 데이터베이스 부하 분산 기 라 고 부른다.
3: 존재 하 는 문제점
부하 이퀄 라이저 가 처리 해 야 할 중요 한 문 제 는 사용자 세 션 을 어떻게 저장 하 느 냐 하 는 것 이다.세 션 정보 가 백 엔 드 서버 에 저장 되면 사용자 의 다음 요청 이 다른 백 엔 드 서버 에 배 치 될 수 있 습 니 다. 이 경우 사용자 세 션 을 계속 할 수 없습니다.부하 균형 기 는 사용자 세 션 을 캐 시 한 다음 사용자 요청 을 다른 백 엔 드 서버 로 나 눌 수 있 습 니 다.그러나 이 는 부하 이퀄 라이저 의 부하 문 제 를 가 져 올 것 이다.이 문 제 를 해결 하 는 데 여러 가지 방안 이 있 습 니 다. 저 는 memcached 로 session 을 저장 하려 고 했 습 니 다. 여러 대의 TOMCAT 서버 에서 SESSION 을 공유 할 수 있 습 니 다.
수정 $TOMCATHOME/conf/server.xml
<Context docBase="E:/java_codes/TestSession/WebContent" path="" reloadable="true" >
<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager" memcachedNodes="n1:localhost:11211" requestUriIgnorePattern=".*\.(png|gif|jpg|css|js)$" sessionBackupAsync="false" sessionBackupTimeout="100" transcoderFactoryClass="de.javakaffee.web.msm.serializer.javolution.JavolutionTranscoderFactory" copyCollectionsForSerialization="false" />
</Context>
여기 memcached Nodes 는 memcached 노드 를 작성 하 는 것 입 니 다. 여러 노드 는 빈 칸 으로 나 눌 수 있 습 니 다. 예 를 들 어 n1: localhost: 11211 n2: localhost: 11212 session BackupTimeout 의 단 위 는 분 E: / java 입 니 다.codes / TestSession / WebContent 를 WEB 디 렉 터 리 로 변경 한 후 두 개의 TOMCAT 를 다시 시작 하면 됩 니 다. 이때 SESSION 의 공유 문 제 를 해결 하 였 습 니 다. 참고 글:http://blog.csdn.net/u013628152/article/details/50485949
4: nginx 설치 및 관련 명령
(1) Nginx 설치: yum install nginx (2) Nginx 서비스 시작: service nginx start (3) Nginx 서비스 정지: service nginx stop
(4) Nginx 실행 상태 보기: service nginx status
[root@iZ25knm9r1gZ ~]# service nginx status
nginx (pid 16435) is running...
(5) Nginx 프로필 검사: nginx - t
[root@iZ25knm9r1gZ ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
(6) 서비스 실행 중 다시 불 러 오기 설정: nginx - s reload (7) Nginx 서비스 추가 자동 시작: chkconfig nginx on
5: 방화벽 규칙 수정
Nginx 가 있 는 호스트 의 방화벽 설정 을 수정 합 니 다. vi / etc / sysconfig / iptables 는 nginx 가 사용 하 는 포트 를 허용 목록 에 추가 합 니 다.예 를 들 어 - A INPUT - m state – state NEW - m tcp - p tcp - dport 80 - j ACCEPT (80 포트 통과 허용) 는 Tomcat 가 있 는 호스트 의 방화벽 설정 을 수정 합 니 다. vi / etc / sysconfig / iptables 는 tomcat 가 사용 하 는 포트 를 허용 목록 에 추가 합 니 다.예 를 들 어 - A INPUT - m state – state NEW - m tcp - p tcp - dport 8080 - j ACCEPT (8080 포트 통과 허용) 호스트 에 tomcat 가 여러 개 있 으 면 이 규칙 에 따라 여러 개 를 추가 하고 해당 하 는 포트 번 호 를 수정 하면 됩 니 다.저장 후 방화벽 다시 시작: service iptables restart
6: Tomcat 부하 균형 설정
Nginx 가 시 작 될 때 기본 설정 파일 / etc / nginx / nginx. conf 를 불 러 옵 니 다. nginx. conf 에 서 는 / etc / nginx / conf. d 디 렉 터 리 에 있 는 모든. conf 파일 을 참조 합 니 다.따라서 사용자 정의 설정 을 단독. conf 파일 에 쓸 수 있 습 니 다. / etc / nginx / conf. d 디 렉 터 리 에 파일 을 넣 으 면 유지 하기 쉽 습 니 다.tomcats. conf: vi / etc / nginx / conf. d / tomcats. conf 를 만 듭 니 다. 내용 은 다음 과 같 습 니 다.
upstream tomcats {
ip_hash;
server 192.168.0.251:8080;
server 192.168.0.251:8081;
server 192.168.0.251:8082;
}
default. conf: vi / etc / nginx / conf. d / default. conf 를 수정 합 니 다. 다음 과 같이 수정 합 니 다.
#
#location / {
# root /usr/share/nginx/html;
# index index.html index.htm;
#}
# tomcats.conf upstream
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://tomcats; # tomcats.conf upstream
}
저장 후 다시 불 러 오기 설정: nginx - s reload
7: 정적 자원 분리 설정
default. conf: vi / etc / nginx / conf. d / default. conf 를 수정 하고 다음 설정 을 추가 합 니 다.
# js,css Nginx
location ~.*\.(js|css)$ {
root /opt/static-resources; #
expires 12h; # 12
}
# Nginx
location ~.*\.(html|jpg|jpeg|png|bmp|gif|ico|mp3|mid|wma|mp4|swf|flv|rar|zip|txt|doc|ppt|xls|pdf)$ {
root /opt/static-resources; #
expires 7d; # 7
}
8: SELinux 보안 규칙 수정
Nginx 에 접근 할 때 502 Bad Gateway 오류 가 발생 하면 Nginx 호스트 의 SELinux 가 http 접근 권한 을 제한 하여 발생 한 것 일 수 있 습 니 다. 명령 을 입력 하 십시오. setsebool - P httpdcan_network_connect 1 오픈 권한 이 있 습 니 다.파일 / etc / nginx / nginx. conf 전체 설정 은 다음 과 같 습 니 다.
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
worker_rlimit_nofile 100000;
events {
use epoll;
multi_accept on;
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
#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 /var/log/nginx/access.log main;
sendfile on;
server_tokens off;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
gzip_disable "msie6";
gzip_static on;
gzip_proxied any;
gzip_min_length 1000;
gzip_comp_level 4;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
include /etc/nginx/conf.d/*.conf;
}
파일 / etc / nginx / conf. d / default. conf 전체 설정 은 다음 과 같 습 니 다.
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
#location / {
# root /usr/share/nginx/html;
# index index.html index.htm;
#}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://web_servers;
}
location ~.*\.(js|css)$ {
root /opt/static-resources;
expires 12h;
}
location ~.*\.(html|jpg|jpeg|png|bmp|gif|ico|mp3|mid|wma|mp4|swf|flv|rar|zip|txt|doc|ppt|xls|pdf)$ {
root /opt/static-resources;
expires 7d;
}
#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 /usr/share/nginx/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;
#}
}
메모: 명령 을 실행 할 때 루트 권한 이 없 으 면 명령 앞 에 sudo 를 추가 하여 실행 하 십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.