萬盛學電腦網

 萬盛學電腦網 >> 服務器教程 >> Nginx負載均衡實戰

Nginx負載均衡實戰

Nginx是一款面向性能設計的HTTP服務器,相較於Apache、lighttpd具有占有內存少,穩定性高等優勢。與舊版本(<=2.2)的Apache不同,nginx不采用每客戶機一線程的設計模型,而是充分使用異步邏輯,削減了上下文調度開銷,所以並發服務能力更強。整體采用模塊化設計,有豐富的模塊庫和第三方模塊庫,配置靈活。 在Linux操作系統下,nginx使用epoll事件模型,得益於此,nginx在Linux操作系統下效率相當高。同時Nginx在OpenBSD或FreeBSD操作系統上采用類似於epoll的高效事件模型kqueue。nginx同時是一個高性能的 HTTP 和 反向代理 服務器,也是一個 IMAP/POP3/SMTP 代理服務器。Nginx 已經因為它的穩定性、豐富的功能集、示例配置文件和低系統資源的消耗而聞名了。

想仔細了解nginx的朋友,給兩個地址給你們,一個是張宴的blog,他是中國較早研究nginx的人,還出了一個本nginx的書,講的很具體,叫《實戰nginx:取代Apache的高性能服務器》,另一個是51的nginx專題。

而今天我的主題呢,主要是nginx負載均衡實驗,把做的步驟記錄下來,作為一個學習筆記吧,也可以給大家做下參考。

1.實驗環境

系統版本:CentOS release 5.9 (Final) x86 32位
nginx版本:   1.2.8
nginx負載均衡位置:192.168.207.131 80端口
WEB_1:192.168.207.129 80端口
WEB_2:192.168.207.130 8080端口
WEB_3:192.168.207.131 8080端口

這裡呢,我在web_1和web_2上使用的是系統自帶的apache,按要求改變一下監聽端口就ok了,當然也可以安裝nginx,這個你自己看著辦吧,我在192.168.207.131上安裝nginx,作為負載均衡器和web服務器使用,負載均衡使用的端口是80,而web服務使用的是8080端口。

2.下載和安裝nginx

安裝nginx前需要先安裝pcre庫,PCRE(Perl Compatible Regular Expressions)是一個Perl庫,包括 perl 兼容的正規表達式庫,這個就是為之後的地址重新,location匹配啊等,讓nginx支持正則:

  1. cd /usr/local/src 
  2. wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz 
  3. tar -zxvf pcre-8.21.tar.gz 
  4. cd pcre-8.21 
  5. ./configure 
  6. make 
  7. make install 

下載安裝nginx

  1. cd /usr/local/src 
  2. wget http://nginx.org/download/nginx-1.2.8.tar.gz 
  3. tar -zxvf nginx-1.2.8.tar.gz 
  4. cd nginx-1.2.8 
  5. ./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/src/pcre-8.21 --user=nginx --group=nginx --with-http_stub_status_module 
  6. make 
  7. make install 

注意--with-pcre指向的pcre的源碼路徑,如果要安裝zlib的話也是這樣,添加個--with-zlib,後面加個源碼路徑。

3.自定義nginx配置文件

我這裡呢,配置文件的參數就多寫點,讓大家多了解一下nginx的參數:

  1. vi /usr/local/nginx/conf/nginx.conf 

內容如下:

  1. #運行用戶 
  2. user nginx nginx; 
  3. #啟動進程 
  4. worker_processes 2; 
  5. #全局錯誤日志及PID文件 
  6. error_log logs/error.log notice; 
  7. pid logs/nginx.pid; 
  8. #工作模式及每個進程連接數上限 
  9. events { 
  10. use epoll; 
  11. worker_connections 1024;     #所以nginx支持的總連接數就等於worker_processes * worker_connections 
  12. #設定http服務器,利用它的反向代理功能提供負載均衡支持 
  13. http { 
  14. #設定mime類型 
  15. include mime.types;  #這個是說nginx支持哪些多媒體類型,可以到conf/mime.types查看支持哪些多媒體 
  16. default_type application/octet-stream;   #默認的數據類型 
  17. #設定日志格式 
  18. log_format main '$remote_addr - $remote_user [$time_local] ' 
  19. '"$request" $status $bytes_sent ' 
  20. '"$http_referer" "$http_user_agent" ' 
  21. '"$gzip_ratio"'; 
  22. log_format download '$remote_addr - $remote_user [$time_local] ' 
  23. '"$request" $status $bytes_sent ' 
  24. '"$http_referer" "$http_user_agent" ' 
  25. '"$http_range" "$sent_http_content_range"'; 
  26. #設定請求緩沖 
  27. client_header_buffer_size 1k; 
  28. large_client_header_buffers 4 4k; 
  29. #開啟gzip模塊 
  30. #gzip on; 
  31. #gzip_min_length 1100; 
  32. #gzip_buffers 4 8k; 
  33. #gzip_types text/plain; 
  34. #output_buffers 1 32k; 
  35. #postpone_output 1460; 
  36. #設定access log 
  37. access_log logs/access.log main; 
  38. client_header_timeout 3m; 
  39. client_body_timeout 3m; 
  40. send_timeout 3m; 
  41. sendfile on; 
  42. tcp_nopush on; 
  43. tcp_nodelay on; 
  44. keepalive_timeout 65; 
  45. #設定負載均衡的服務器列表 
  46. upstream mysvr { 
  47. #weigth參數表示權值,權值越高被分配到的幾率越大 
  48. server 192.168.207.129:80 weight=5; 
  49. server 192.168.207.130:8080 weight=5; 
  50. server 192.168.207.131:8080 weight=2; 
  51. server { #這個是設置web服務的,監聽8080端口 
  52. listen        8080; 
  53. server_name    192.168.207.131; 
  54. index     index.html index.htm; 
  55. root        /var/www/html; 
  56. #error_page     500 502 503 504    /50x.html; 
  57. #location = /50x.html { 
  58. #    root     html; 
  59. #} 
  60. #設定虛擬主機 
  61. server { 
  62. listen 80; 
  63. server_name 192.168.207.131; 
  64. #charset gb2312; 
  65. #設定本虛擬主機的訪問日志 
  66. access_log logs/three.web.access.log main; 
  67. #如果訪問 /img/*, /js/*, /css/* 資源,則直接取本地文件,不通過squid 
  68. #如果這些文件較多,不推薦這種方式,因為通過squid的緩存效果更好 
  69. #location ~ ^/(img|js|css)/{ 
  70. #   root /data3/Html; 
  71. #   expires 24h; 
  72. #} 
  73. #對 "/" 啟用負載均衡 
  74. location / { 
  75. proxy_pass http://mysvr;  #以這種格式來使用後端的web服務器 
  76. proxy_redirect off; 
  77. proxy_set_header Host $host; 
  78. proxy_set_header X-Real-IP $remote_addr; 
  79. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
  80. client_max_body_size 10m; 
  81. client_body_buffer_size 128k; 
  82. proxy_connect_timeout 90; 
  83. proxy_send_timeout 90; 
  84. proxy_read_timeout 90; 
  85. proxy_buffer_size 4k; 
  86. proxy_buffers 4 32k; 
  87. proxy_busy_buffers_size 64k; 
  88. proxy_temp_file_write_size 64k; 
  89. #設定查看Nginx狀態的地址 ,在安裝時要加上--with-http_stub_status_module參數 
  90. location /NginxStatus { 
  91. stub_status on; 
  92. access_log on; 
  93. auth_basic "NginxStatus"; 
  94. auth_basic_user_file conf/htpasswd;  &nb
copyright © 萬盛學電腦網 all rights reserved