posts - 68, comments - 19, trackbacks - 0, articles - 1

          nginx負載均衡配置

          Posted on 2018-09-15 23:08 viery 閱讀(148) 評論(0)  編輯  收藏 所屬分類: linux
          1.準備3臺服務器,可以在虛擬機上測試,都要安裝nginx 
          c01 nginx負載均衡服務器 192.168.38.128
          c02 c03 web服務器 192.168.38.129/130

          2.c02 c03 nginx.conf配置
           1 worker_processes  1;
           2 error_log logs/error.log;
           3 events {
           4     worker_connections  1024;
           5 }
           6 http {
           7     include       mime.types;
           8     default_type  application/octet-stream;
           9     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
          10                       '$status $body_bytes_sent "$http_referer" '
          11                       '"$http_user_agent" "$http_x_forwarded_for"';
          12 
          13     sendfile        on;
          14     server_tokens off;
          15     keepalive_timeout  65;
          16     
          17     server {
          18         listen       80;
          19         server_name  www.hello.org;
          20 
          21         location / {
          22             root   html/www;
          23             index  index.html index.htm;
          24         }
          25         access_log logs/access_www.log main;
          26     }
          27 }

          3 /ect/hosts 配置ip和域名對應

          4 curl測試web服務器解析結果是否正確

          5.配置負載均衡服務器
           1 worker_processes  1;
           2 error_log logs/error.log;
           3 events {
           4     worker_connections  1024;
           5 }
           6 http {
           7     include       mime.types;
           8     default_type  application/octet-stream;
           9 
          10     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
          11                       '$status $body_bytes_sent "$http_referer" '
          12                       '"$http_user_agent" "$http_x_forwarded_for"';
          13 
          14     sendfile        on;
          15     server_tokens off;
          16     keepalive_timeout  65;
          17     upstream www_server_pools{
          18         server 192.168.38.130:80 weight=1;
          19         server 192.168.38.129:80 weight=1;
          20     }
          21     server{
          22         listen 80;
          23         server_name www.hello.org;
          24         location / {
          25                 proxy_pass http://www_server_pools;
          26         }
          27     }
          28 }

          6.在windows客戶端配置etc目錄下域名解析 
          192.168.38.128 www.hello.org

          在瀏覽器中輸入www.hello.org,會按照配置文件中的weight比例交替出現c02和c03web服務器。
          主站蜘蛛池模板: 大化| 都江堰市| 来凤县| 桃园市| 乐昌市| 丹江口市| 西吉县| 汪清县| 麻城市| 峨山| 盐源县| 南投市| 神木县| 固原市| 都兰县| 江达县| 达尔| 嘉黎县| 麻江县| 修武县| 泰安市| 九江县| 枣强县| 洛扎县| 慈溪市| 湘西| 古丈县| 满城县| 阳新县| 页游| 保靖县| 西吉县| 徐闻县| 苗栗市| 南靖县| 淮南市| 德兴市| 修水县| 长沙县| 新丰县| 铅山县|