並發性能測試
1 測試目的
根據Apache、Nginx並發性能測試結果分析其並發模型各自優缺點。
效能評估項目包括:RPS(每秒鐘處理請求數)、CPU佔用率、記憶體佔用率、最大並發數。
根據Apache、Nginx並發模型優缺點,選擇合適的並發模型框架。
2 測試環境
1.硬體環境
伺服器:Interl server Borad
8核心CPU,2G內存,160G硬碟,
客戶端:與伺服器端環境相同
2、作業系統
作業系統:Red Hat EnterPrise 核心Linux 2.6.18
客戶端:Red Hat EnterPrise 核心Linux 2.6.9
3.網路拓樸
伺服器與客戶端透過百兆網路線連接一台交換器
伺服器IP位址:192.168.192.201
客戶端IP位址:192.168.192.200
3 測試方法
3.1 測試工具
Apache 2.2.10 自帶工具bench
webbench 1.5
3.2 測驗步驟
1.設備檢查安裝
檢查系統所有設備是否完好可用,並將設備連接到主機。
2、網路連線檢查
伺服器和客戶端用百兆網路線連接在同一交換器
3.作業系統準備
啟動Red Hat Enterprise
安裝滑鼠驅動,配置網路
4、下載、安裝、設定
參考附錄
5.apache測試
運行apache
cd /usr/local/apache/bin
./apachectl -k start
測試apache服務成功啟動
在windows下瀏覽:http://192.168.192.201/index.html
出現「it works!」測試頁面
運行apche bench測試程序
cd /usr/local/apache/bin
./ab -c Clients -n Requests http://192.168.192.201/index.html
運行webbench測試程序
cd /usr/local/bin
webbench -c Clients -t time http://192.168.192.200/index.html
(Clients代表使用者數,Requests代表並發數)
6、Nginx測試
運行nginx
./nginx
測試nginx服務成功啟動
在windows下瀏覽:http://192.168.192.201/index.html
出現“Welcome to nginx!” 頁面
為了測試結果可比較性,將apache測試頁index.html拷貝覆蓋nignx測試頁
運行apche bench測試程序
cd /usr/local/apache/bin
./ab -c Clients -n Requests http://192.168.192.201/index.html
運行webbech測試程式
cd /usr/local/bin
webbench -c Clients -t time http://192.168.192.200/index.html
7.記錄測試結果
記錄bench測試結果:Time taken for tests(測試時間,單位:秒),Requests per second(每秒處理請求數)
記錄webbench測試結果:Speed(每分鐘處理請求數,為了與Apache bench一致,記錄時*30轉換成每秒鐘處理請求數),運行時間根據操作命令-t指定,預設30秒
查看CPU佔用情況指令:top
記憶體佔用情況指令:free
4 測試方案
Nginx單線程測驗
Nginx多執行緒測驗
Apache woker模式測試
Apache prefork模式測試
5 資料彙總
測試配置:Apache配置參考7.4,Nginx配置參考7.5
原始資料請參考原始資料xls
數據總結如下:
server client RPS
Idle Free(used) Idle Free(used)
Nginx 單一進程 79 102526K 82 185196K 20757
Nginx 多重流程 81 395444K 85 177405K 20861
Apahce prefork 38 154380K 75 178215K 30181
Apache worker 41 81506K 81 183166K 24669
6 檢定結論
7 附錄
7.1 Webbench安裝
步驟 操作
下載安裝包 wget http://blog.s135.com/soft/linux/webbench/webbench-1.5.tar.gz
解壓縮 tar zxvf webbench-1.5.tar.gz
編譯 cd webbench-1.5
make
安裝 make install
7.2 Apache安裝
步驟 操作 說明
下載安裝包 在http://www.apache.org下載軟體包httpd-2.2.10.tar.gz 最新stable版
解壓縮 tar xvzf httpd-2.2.10.tar.gz
編譯選項 ./configure --prefix=/usr/local/apache 安裝路徑
--enable-module=shared 進程間共享記憶體
--enable-module=rewrite
--enable-threads 線程支(Worker模式有效)
--enable-shared=max
--with-mpm=worker Worker模式選擇
--with-mpm=prefork Prefork模式選擇
--with-mpm=event I/O重複使用支援
make 編譯與
安裝 make install
7.3 Nginx安裝
步驟 操作 說明
下載安裝包 在http://sysoev.ru/nginx/download.html下載軟體套件nginx-0.7.24.tar.gz 最新stable版
解壓縮 tar xvzf ginx-0.7.24.tar.gz
編譯 ./configure --prefix=/usr/local/ 安裝路徑
make 編譯
安裝 make install
7.4 Apache設定
Apache設定指令:
cd /usr/local/apache/conf
vi http.conf
prefork模式下參數配置:
設定 Apache
prefork模式 --with-mpm=prefork
系統啟動建立進程數 StartServers 128 //為接Nginx可比
活動子進程數 ServerLimit 50000
子進程生命週期內處理連線數 MaxRequestsPerChild 0 // 0為不限制
最大子進程數 MaxClients 50000
監聽埠 Listen 80
timeout Timeout 300
keepAlive KeepAlive On
Sendfile EnableSendfile on
Worker模式配置:
設定項 實現
Worker模式 --with-mpm=worker
系統啟動建立進程數 StartServers 32
活動子進程數 ServerLimit 7812
最大執行緒數 MaxClients 500000
子行程執行緒數 ThreadsPerChild 64 //等於Apache允許設定的最大值
監聽埠 Listen 80
timeout Timeout 300
keepAlive KeepAlive On
Sendfile EnableSendfile on
7.5 Nginx設定
Nginx設定指令 :
cd /usr/local/nginx/conf
vi nginx.conf
測試Nginx設定指令:
./nginx –t
單一工作進程主要配置:
設定 Nginx
進程 worker_processes 1;
進程處理連線數 worker_connections 102400;
監聽埠 server {
listen 80;
}
Sendfile sendfile on;
I/O多工法 use epoll;
多工進程配置:
設定 Nginx
進程 worker_processes 16;
進程處理連線數 worker_connections 102400;
監聽埠 server {
listen 80;
}
Sendfile sendfile on;
I/O多工法 use epoll;
以上就介紹了並發效能測試 apache nginx,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。