並發效能測試
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教程有興趣的朋友有所協助。