Nginx 부하 균형 설정 실례

8680 단어 nginx
최근 에 nginx 의 부하 균형 원 리 를 배 워 서 실례 적 인 연습 자 를 배치 하기 시작 했다.
1. 머리말
제 가 사용 하 는 환경 은 centos 7 이 고 nginx 버 전 은 1.8.1 입 니 다. 구체 적 으로 어떻게 설치 하 는 지 제 앞의 글 을 참고 하 세 요.우리 회사 의 응용 서버 는 환경 이 있 습 니 다. 하 나 는 개발 환경 이 고 하 나 는 테스트 환경 입 니 다. 두 환경의 응용 은 같 지만 창고 의 데 이 터 는 다 릅 니 다. 이렇게 하면 잠시 기다 리 는 테스트 에 도 편리 합 니 다.
2. nginx 부하 균형 설정
nginx 기본 값 은 conf / nginx. conf 를 시작 설정 으로 합 니 다. conf / nginx. conf. default 는 nginx. conf 의 백업 으로 두 파일 의 내용 이 똑 같 습 니 다. 그러면 우 리 는 자신의 수요 에 따라 nginx. conf 에 부하 균형 을 설정 할 수 있 습 니 다. nginx. conf 내용 은 다음 과 같 습 니 다.

#user  nobody;  #        nginx              
worker_processes  1;    # nginx        (       cpu  )

# [debug | info | warn | error | crit]           
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#     
#pid        logs/nginx.pid;


events {
    #           
    worker_connections  1024;
}

#   http   ,                
http {
    include       mime.types;   #   mime  
    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  logs/access.log  main;


    sendfile        on;  #          
    #               
    #tcp_nopush on;
    #tcp_nodelay on;
    ##tcp_nopush        sendfile on       。tcp_nodelay    keepalive        。
    #     
    keepalive_timeout  65;

    #   gzip  
    #gzip  on;

    #       
    upstream myproject {
    #        
    server 192.168.1.111; #    ip
    server 192.168.1.114; #    ip
    }
    #          
    server {
        listen       80;
    #      ,    
        server_name  nginx_proxy;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
           # root   html;
           # index  index.html index.htm;
       #             ,            IP
       proxy_set_header Host $host;
       proxy_set_header X-Real-IP $remote_addr;
       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       #    
       proxy_buffering off;
       #        
       proxy_pass http://myproject;
        }

        #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;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

3. Nginx 상용 명령
 #  nginx  :
 nginx -t  /usr/local/nginx/conf/fzjh.conf
 #  、  
 ./sbin/nginx #        conf/nginx.conf,-c         
 ./sbin/nginx -s stop
   pkill nginx
 #  ,              
 ./sbin/nginx -s reload

좋은 웹페이지 즐겨찾기