Home > Operation and Maintenance > Linux Operation and Maintenance > Steps to install webbench locally

Steps to install webbench locally

PHP中文网
Release: 2017-06-20 11:21:53
Original
1637 people have browsed it

Install webbench locally, the steps are as follows:

wget
Copy after login
tar zxvf webbench-1.5.tar.gz
Copy after login
make && make install
Copy after login

The installation is complete.

Generally we only use two parameters -c and -t, similar to the following:

webbench -c 300 -t 60 http://127.0.0.1/
Copy after login

-t indicates the time to run the test. If not specified, the default is 30 seconds, -c indicates The number of clients, that is, the number of concurrencies.

Install siege:

wget

tar zxf siege-2.67.tar.gz

cd siege-2.67

./configure && make && make install

siege -c 10000 -r 10 http://127.0.0.1/

-c is the amount of concurrency, -r is the number of repetitions.

The above is the detailed content of Steps to install webbench locally. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template