1 ####################全域性配置資訊######################## 2 #######引數是程式級的,通常和作業系統(OS)相關######### 3 global 4 maxconn 20480 #預設最大連線數 5 log 127.0.0.1 local3 #[err warning info debug] 6 chroot /var/haproxy #chroot執行的路徑 7 uid 99 #所屬執行的使用者uid 8 gid 99 #所屬執行的使用者組 9 daemon #以後臺形式執行haproxy 10 nbproc 1 #程式數量(可以設定多個程式提高效能) 11 pidfile /var/run/haproxy.pid #haproxy的pid存放路徑,啟動程式的使用者必須有許可權訪問此檔案 12 ulimit-n 65535 #ulimit的數量限制 13 14 15 #####################預設的全域性設定###################### 16 ##這些引數可以被利用配置到frontend,backend,listen元件## 17 defaults 18 log global 19 mode http #所處理的類別 (#7層 http;4層tcp ) 20 maxconn 20480 #最大連線數 21 option httplog #日誌類別http日誌格式 22 option httpclose #每次請求完畢後主動關閉http通道 23 option dontlognull #不記錄健康檢查的日誌資訊 24 option forwardfor #如果後端伺服器需要獲得客戶端真實ip需要配置的引數,可以從Http Header中獲得客戶端ip 25 option redispatch #serverId對應的伺服器掛掉後,強制定向到其他健康的伺服器 26 option abortonclose #當伺服器負載很高的時候,自動結束掉當前佇列處理比較久的連線 27 stats refresh 30 #統計頁面重新整理間隔 28 retries 3 #3次連線失敗就認為服務不可用,也可以通過後面設定 29 balance roundrobin #預設的負載均衡的方式,輪詢方式 30 #balance source #預設的負載均衡的方式,類似nginx的ip_hash 31 #balance leastconn #預設的負載均衡的方式,最小連線 32 contimeout 5000 #連線超時 33 clitimeout 50000 #客戶端超時 34 srvtimeout 50000 #伺服器超時 35 timeout check 2000 #心跳檢測超時 36 37 ####################監控頁面的設定####################### 38 listen admin_status #Frontend和Backend的組合體,監控組的名稱,按需自定義名稱 39 bind 0.0.0.0:65532 #監聽埠 40 mode http #http的7層模式 41 log 127.0.0.1 local3 err #錯誤日誌記錄 42 stats refresh 5s #每隔5秒自動重新整理監控頁面 43 stats uri /admin?stats #監控頁面的url 44 stats realm itnihao\ itnihao #監控頁面的提示資訊 45 stats auth admin:admin #監控頁面的使用者和密碼admin,可以設定多個使用者名稱 46 stats auth admin1:admin1 #監控頁面的使用者和密碼admin1 47 stats hide-version #隱藏統計頁面上的HAproxy版本資訊 48 stats admin if TRUE #手工啟用/禁用,後端伺服器(haproxy-1.4.9以後版本) 49 50 51 errorfile 403 /etc/haproxy/errorfiles/403.http 52 errorfile 500 /etc/haproxy/errorfiles/500.http 53 errorfile 502 /etc/haproxy/errorfiles/502.http 54 errorfile 503 /etc/haproxy/errorfiles/503.http 55 errorfile 504 /etc/haproxy/errorfiles/504.http 56 57 #################HAProxy的日誌記錄內容設定################### 58 capture request header Host len 40 59 capture request header Content-Length len 10 60 capture request header Referer len 200 61 capture response header Server len 40 62 capture response header Content-Length len 10 63 capture response header Cache-Control len 8 64 65 #######################網站監測listen配置##################### 66 ###########此用法主要是監控haproxy後端伺服器的監控狀態############ 67 listen site_status 68 bind 0.0.0.0:1081 #監聽埠 69 mode http #http的7層模式 70 log 127.0.0.1 local3 err #[err warning info debug] 71 monitor-uri /site_status #網站健康檢測URL,用來檢測HAProxy管理的網站是否可以用,正常返回200,不正常返回503 72 acl site_dead nbsrv(server_web) lt 2 #定義網站down時的策略當掛在負載均衡上的指定backend的中有效機器數小於1臺時返回true 73 acl site_dead nbsrv(server_blog) lt 2 74 acl site_dead nbsrv(server_bbs) lt 2 75 monitor fail if site_dead #當滿足策略的時候返回503,網上文件說的是500,實際測試為503 76 monitor-net 192.168.16.2/32 #來自192.168.16.2的日誌資訊不會被記錄和轉發 77 monitor-net 192.168.16.3/32 78 79 ########frontend配置############ 80 #####注意,frontend配置裡面可以定義多個acl進行匹配操作######## 81 frontend http_80_in 82 bind 0.0.0.0:80 #監聽埠,即haproxy提供web服務的埠,和lvs的vip埠類似 83 mode http #http的7層模式 84 log global #應用全域性的日誌配置 85 option httplog #啟用http的log 86 option httpclose #每次請求完畢後主動關閉http通道,HA-Proxy不支援keep-alive模式 87 option forwardfor #如果後端伺服器需要獲得客戶端的真實IP需要配置次引數,將可以從Http Header中獲得客戶端IP 88 ########acl策略配置############# 89 acl itnihao_web hdr_reg(host) -i ^(www.itnihao.cn|ww1.itnihao.cn)$ 90 #如果請求的域名滿足正規表示式中的2個域名返回true -i是忽略大小寫 91 acl itnihao_blog hdr_dom(host) -i blog.itnihao.cn 92 #如果請求的域名滿足www.itnihao.cn返回true -i是忽略大小寫 93 #acl itnihao hdr(host) -i itnihao.cn 94 #如果請求的域名滿足itnihao.cn返回true -i是忽略大小寫 95 #acl file_req url_sub -i killall= 96 #在請求url中包含killall=,則此控制策略返回true,否則為false 97 #acl dir_req url_dir -i allow 98 #在請求url中存在allow作為部分地址路徑,則此控制策略返回true,否則返回false 99 #acl missing_cl hdr_cnt(Content-length) eq 0 100 #當請求的header中Content-length等於0時返回true 101 102 ########acl策略匹配相應############# 103 #block if missing_cl 104 #當請求中header中Content-length等於0阻止請求返回403 105 #block if !file_req || dir_req 106 #block表示阻止請求,返回403錯誤,當前表示如果不滿足策略file_req,或者滿足策略dir_req,則阻止請求 107 use_backend server_web if itnihao_web 108 #當滿足itnihao_web的策略時使用server_web的backend 109 use_backend server_blog if itnihao_blog 110 #當滿足itnihao_blog的策略時使用server_blog的backend 111 #redirect prefix http://blog.itniaho.cn code 301 if itnihao 112 #當訪問itnihao.cn的時候,用http的301挑轉到http://192.168.16.3 113 default_backend server_bbs 114 #以上都不滿足的時候使用預設server_bbs的backend 115 116 117 ##########backend的設定############## 118 #下面我將設定三組伺服器 server_web,server_blog,server_bbs 119 ##################backend server_web#################### 120 backend server_web 121 mode http #http的7層模式 122 balance roundrobin #負載均衡的方式,roundrobin平均方式 123 cookie SERVERID #允許插入serverid到cookie中,serverid後面可以定義 124 option httpchk GET /index.html #心跳檢測的檔案 125 server web1 192.168.16.2:80 cookie web1 check inter 1500 rise 3 fall 3 weight 1 126 #伺服器定義,cookie 1表示serverid為web1,check inter 1500是檢測心跳頻率rise 3是3次正確認為伺服器可用, 127 #fall 3是3次失敗認為伺服器不可用,weight代表權重 128 server web2 192.168.16.3:80 cookie web2 check inter 1500 rise 3 fall 3 weight 2 129 #伺服器定義,cookie 1表示serverid為web2,check inter 1500是檢測心跳頻率rise 3是3次正確認為伺服器可用, 130 #fall 3是3次失敗認為伺服器不可用,weight代表權重 131 132 ###################backend server_blog###################### 133 backend server_blog 134 mode http #http的7層模式 135 balance roundrobin #負載均衡的方式,roundrobin平均方式 136 cookie SERVERID #允許插入serverid到cookie中,serverid後面可以定義 137 option httpchk GET /index.html #心跳檢測的檔案 138 server blog1 192.168.16.2:80 cookie blog1 check inter 1500 rise 3 fall 3 weight 1 139 #伺服器定義,cookie 1表示serverid為blog1,check inter 1500是檢測心跳頻率rise 3是3次正確認為伺服器可用,fall 3是3次失敗認為伺服器不可用,weight代表權重 140 server blog2 192.168.16.3:80 cookie blog2 check inter 1500 rise 3 fall 3 weight 2 141 #伺服器定義,cookie 1表示serverid為blog2,check inter 1500是檢測心跳頻率rise 3是3次正確認為伺服器可用,fall 3是3次失敗認為伺服器不可用,weight代表權重 142 143 ##################backend server_bbs######################## 144 145 backend server_bbs 146 mode http #http的7層模式 147 balance roundrobin #負載均衡的方式,roundrobin平均方式 148 cookie SERVERID #允許插入serverid到cookie中,serverid後面可以定義 149 option httpchk GET /index.html #心跳檢測的檔案 150 server bbs1 192.168.16.2:80 cookie bbs1 check inter 1500 rise 3 fall 3 weight 1 151 #伺服器定義,cookie 1表示serverid為bbs1,check inter 1500是檢測心跳頻率rise 3是3次正確認為伺服器可用,fall 3是3次失敗認為伺服器不可用,weight代表權重 152 server bbs2 192.168.16.3:80 cookie bbs2 check inter 1500 rise 3 fall 3 weight 2 153 #伺服器定義,cookie 1表示serverid為bbs2,check inter 1500是檢測心跳頻率rise 3是3次正確認為伺服器可用,fall 3是3次失敗認為伺服器不可用,weight代表權重
以上是配置檔案的每一行的具體含義
-------------------------------------------------------------------------------------------
1 global 2 log 127.0.0.1 local3 3 maxconn 20480 4 chroot /usr/local/haproxy 5 uid 1004 #1004為haproxy 使用者的uid ,haproxy使用者需要自己手動建立 6 gid 1004 7 daemon 8 quiet 9 nbproc 1 10 pidfile /var/run/haproxy.pid 11 defaults 12 log global 13 mode http 14 maxconn 20480 15 option httplog 16 option httpclose 17 option forwardfor 18 option dontlognull 19 option redispatch 20 retries 3 21 balance roundrobin 22 contimeout 5000 23 clitimeout 50000 24 srvtimeout 50000 25 listen web_poll 192.168.0.14:80 26 mode http 27 option httplog 28 option dontlognull 29 option logasap 30 option forwardfor 31 option httpclose 32 # option httpchk GET /index.html 33 server web1 192.168.0.24:80 cookie 1 check inter 2000 rise 3 fall 3 34 server web2 192.168.0.64:80 cookie 1 check inter 2000 rise 3 fall 3 35 listen status 192.168.0.14:8080 36 stats enable 37 stats uri /stats 38 stats auth admin:123456 39 stats realm (Haproxy\ statistic)
以上是根據自己需求而配置的配置檔案
----------------------------------------------------------------
1 #!/bin/bash 2 # 3 # haproxy 4 # 5 # chkconfig: 35 85 15 6 # description: HAProxy is a free, very fast and reliable solution \ 7 # offering high availability, load balancing, and \ 8 # proxying for TCP and HTTP-based applications 9 # processname: haproxy 10 # config: /etc/haproxy.cfg 11 # pidfile: /var/run/haproxy.pid 12 13 # Source function library. 14 . /etc/rc.d/init.d/functions 15 16 # Source networking configuration. 17 . /etc/sysconfig/network 18 19 # Check that networking is up. 20 [ "$NETWORKING" = "no" ] && exit 0 21 22 config="/etc/haproxy.cfg" 23 exec="/usr/local/haproxy/sbin/haproxy" 24 prog=$(basename $exec) 25 26 [ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog 27 28 lockfile=/var/lock/subsys/haproxy 29 30 check() { 31 $exec -c -V -f $config 32 } 33 34 start() { 35 $exec -c -q -f $config 36 if [ $? -ne 0 ]; then 37 echo "Errors in configuration file, check with $prog check." 38 return 1 39 fi 40 41 echo -n $"Starting $prog: " 42 # start it up here, usually something like "daemon $exec" 43 daemon $exec -D -f $config -p /var/run/$prog.pid 44 retval=$? 45 echo 46 [ $retval -eq 0 ] && touch $lockfile 47 return $retval 48 } 49 50 stop() { 51 echo -n $"Stopping $prog: " 52 # stop it here, often "killproc $prog" 53 killproc $prog 54 retval=$? 55 echo 56 [ $retval -eq 0 ] && rm -f $lockfile 57 return $retval 58 } 59 60 restart() { 61 $exec -c -q -f $config 62 if [ $? -ne 0 ]; then 63 echo "Errors in configuration file, check with $prog check." 64 return 1 65 fi 66 stop 67 start 68 } 69 70 reload() { 71 $exec -c -q -f $config 72 if [ $? -ne 0 ]; then 73 echo "Errors in configuration file, check with $prog check." 74 return 1 75 fi 76 echo -n $"Reloading $prog: " 77 $exec -D -f $config -p /var/run/$prog.pid -sf $(cat /var/run/$prog.pid) 78 retval=$? 79 echo 80 return $retval 81 } 82 83 force_reload() { 84 restart 85 } 86 87 fdr_status() { 88 status $prog 89 } 90 91 case "$1" in 92 start|stop|restart|reload) 93 $1 94 ;; 95 force-reload) 96 force_reload 97 ;; 98 checkconfig) 99 check 100 ;; 101 status) 102 fdr_status 103 ;; 104 condrestart|try-restart) 105 [ ! -f $lockfile ] || restart 106 ;; 107 *) 108 echo $"Usage: $0 {start|stop|status|checkconfig|restart|try-restart|reload|force-reload}" 109 exit 2 110 esac
以上是haproxy的啟動指令碼linux