1. Introduction
- An open-source stress testing tool that allows multiuser concurrent access to a Web site based on configuration, records the corresponding time for each user's request process, and repeats under a number of concurrent accesses
- Website address: www.joedog.org
- Official website: http://download.joedog.org/siege/
2. Installation
[Email protected] ~]# cd/usr/local/src/[[email protected] src]# wget http://download.joedog.org/siege/ siege-3.1.0.tar.gz //download Siege[[email protected] src]# TAR-ZXVF siege-3.1.0.tar.gz //extract to current directory [email protecte D] src]# CD siege-3.1.0// Enter the extracted directory [[email protected] siege-2.70]# make //compile [[email protected] siege-2.70]# make install//install
3. Use
- Siege-c 200-r 10-f Html.url
- -C is the concurrency,-R is the number of repetitions, URL file is a text, each line is a URL, it will be randomly accessed from the inside
I'll take the blog address here to do the test
[email protected] test]# cat html.urlhttp://www.cnblogs.com/vforbox/p/4740517.htmlhttp://www.cnblogs.com/vforbox/ P/4754618.htmlhttp://www.cnblogs.com/vforbox/p/4754405.html
Web Stress test Tool Siege