Webbench 测试


Webbench最多可以模拟3万个并发连接去测试网站的负载能力
tar -zxvf webbench-1.5.tar.gz
cd webbench-1.5

make
出现错误
ctags *.c
/bin/sh: ctags: command not found
make: [tags] Error 127 (ignored)

yum install ctags


mkdir -p /usr/local/man ←建立相应目录(否则导致无法正常安装) 

make install

webbench -c 10 -t 60 http://172.16.3.10/
webbench -c 并发数 -t 运行测试时间 URL

猜你喜欢

转载自stevenfeng.iteye.com/blog/1930122