1.下載所需安裝包: 2.解壓到伺服器,編譯安裝: 安裝中可能遇到的問題1 提示如下錯誤:/mnt/vdd/mod_bw.c: In function 'get_bw_rate':/mnt/vdd/mod_bw.c:567:59: error: 'conn_rec' has no membe ...
1.下載所需安裝包:
2.解壓到伺服器,編譯安裝:
安裝中可能遇到的問題1 提示如下錯誤:/mnt/vdd/mod_bw.c: In function 'get_bw_rate':/mnt/vdd/mod_bw.c:567:59: error: 'conn_rec' has no member named 'remote_addr' if (apr_ipsubnet_test(e[i].x.ip, r->connection->remote_addr)) {這個錯誤是由於apache2.2 到2.4 api有所改變,詳細如下:http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html
vim mod_bw.c把所有的remote_ip和remote_addr分別替換成client_ip和client_addr
:%s/remote_ip/client_ip/
:%s/remote_addr/client_addr/
重新執行 apxs -i -c -a mod_bw.c
3.配置httpd.conf
MaxConnection all 最大連接數
Bandwidth all 50kb/s 帶寬限制
4.重啟服務測試