<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>benchmark Archives - ITBlogSec.com</title>
	<atom:link href="https://itblogsec.com/tag/benchmark/feed/" rel="self" type="application/rss+xml" />
	<link>https://itblogsec.com/tag/benchmark/</link>
	<description>IT, network, security and hacking</description>
	<lastBuildDate>Mon, 04 May 2020 13:44:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>Web server performance benchmark for FREE</title>
		<link>https://itblogsec.com/web-server-performance-benchmark-for-free/</link>
					<comments>https://itblogsec.com/web-server-performance-benchmark-for-free/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 15 Feb 2017 14:46:19 +0000</pubDate>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[web-server]]></category>
		<guid isPermaLink="false">http://itblogsec.com/?p=573</guid>

					<description><![CDATA[<p>Sometimes you need to find out what is average response time of your website. Such information is very useful and can lead you to optimize and tune your web-server for better performance. In the article we will introduce you possibilities how to make benchmark of your web-server for free.</p>
<p>The post <a href="https://itblogsec.com/web-server-performance-benchmark-for-free/">Web server performance benchmark for FREE</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Web server performance benchmark for FREE</h2>
<p style="text-align: justify;">Sometimes you need to find out what is average response time of your website. Such information is very useful and can lead you to optimize and tune your web-server for better performance. In the article we will introduce you possibilities how to make benchmark of your web-server for free.</p>
<h3><strong>1. ApacheBench</strong></h3>
<p style="text-align: justify;">AB is a tool for benchmarking your Apache Hypertext Transfer Protocol (HTTP) server. It is designed to give you an impression of how your current Apache installation performs. This especially shows you how many requests per second your Apache installation is capable of serving.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">sudo apt-get update</pre>
<p>Refresh the package database.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic"> sudo apt-get install apache2-utils</pre>
<p style="text-align: justify;">Install the apache2-utils package to get access to ApacheBench.</p>
<p style="text-align: justify;">Now you are ready to run benchmark. To isolate any network latency, it is the best idea to run it locally on web-server you want to test. Let’s see how it performs for 5000 requests with a concurrency of 500.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">ab -n 5000 -c 500 http://localhost:80/</pre>
<div id="attachment_574" style="width: 610px" class="wp-caption alignnone"><a href="https://itblogsec.com/wp-content/uploads/2017/02/ab_benchmark.jpg"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-574" class="border-image wp-image-574 size-full" src="https://itblogsec.com/wp-content/uploads/2017/02/ab_benchmark.jpg" alt="AB benchmark tool" width="600" height="864" srcset="https://itblogsec.com/wp-content/uploads/2017/02/ab_benchmark.jpg 600w, https://itblogsec.com/wp-content/uploads/2017/02/ab_benchmark-208x300.jpg 208w" sizes="(max-width: 600px) 100vw, 600px" /></a><p id="caption-attachment-574" class="wp-caption-text">AB benchmark tool</p></div>
<p style="text-align: justify;">As you can see above, web-server was able to handle <strong>5000 request in 25.905 seconds</strong> and <strong>193.01 requests per 1 second.</strong></p>
<h3><strong>2. Siege</strong></h3>
<p style="text-align: justify;">Siege is an HTTP load testing and benchmarking utility. It has a similar interface to ab, which will make transitioning to the tool almost seamless. Also, instead of testing against a single URL, Siege allows you to test against multiple. This allows for a more real-world simulation of how a user would use your system.</p>
<p>Refresh the package database.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">sudo apt-get update</pre>
<p>So, lets install Siege.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">sudo apt-get install siege</pre>
<p style="text-align: justify;">That was easy, apt-get will resolve dependencies for you so if everything’s gone well you should be able to get stuck right in, lets say we’ve got a WordPress instance under localhost that we want to test, simply run this command:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">siege -c 5 -b -t30s 'http://localhost'</pre>
<p>Here’s a quick explanation of the options we’ve used above:</p>
<ul>
<li>-c 5 – run with five concurrent requests</li>
<li>-b – benchmark mode</li>
<li>-t30s – time, run for 30 seconds</li>
<li>http://localhost – the target of the benchmark</li>
</ul>
<div id="attachment_575" style="width: 532px" class="wp-caption alignnone"><a href="https://itblogsec.com/wp-content/uploads/2017/02/siege_benchmark.jpg"><img decoding="async" aria-describedby="caption-attachment-575" class="border-image wp-image-575 size-full" src="https://itblogsec.com/wp-content/uploads/2017/02/siege_benchmark.jpg" alt="Siege benchmark tool" width="522" height="368" srcset="https://itblogsec.com/wp-content/uploads/2017/02/siege_benchmark.jpg 522w, https://itblogsec.com/wp-content/uploads/2017/02/siege_benchmark-300x211.jpg 300w" sizes="(max-width: 522px) 100vw, 522px" /></a><p id="caption-attachment-575" class="wp-caption-text">Siege benchmark tool</p></div>
<p>In the result, server has <strong>100% availability</strong> and was able to serve <strong>247.01 transaction/sec.</strong></p>
<h3><strong>3. jMeter</strong></h3>
<p style="text-align: justify;">jMeter is an Open Source testing software. It is 100% pure Java application for load and performance testing. jMeter is designed to cover categories of tests like load, functional, performance, regression, etc., and it requires JDK 5 or higher.</p>
<p style="text-align: justify;"><strong>Stefano Mazzocchi</strong> of the Apache Software Foundation was the original developer of JMeter. He wrote it primarily to test the performance of Apache JServ (now called as Apache Tomcat project). Apache later redesigned JMeter to enhance the GUI and to add functional testing capabilities.</p>
<p style="text-align: justify;">JMeter is a Java desktop application with a graphical interface that uses the Swing graphical API. It can therefore run on any environment / workstation that accepts a Java virtual machine, for example − Windows, Linux, Mac, etc.</p>
<div id="attachment_576" style="width: 1226px" class="wp-caption alignnone"><a href="https://itblogsec.com/wp-content/uploads/2017/02/jMeter.jpg"><img decoding="async" aria-describedby="caption-attachment-576" class="border-image wp-image-576 size-full" src="https://itblogsec.com/wp-content/uploads/2017/02/jMeter.jpg" alt="Example of jMeter GUI" width="1216" height="649" srcset="https://itblogsec.com/wp-content/uploads/2017/02/jMeter.jpg 1216w, https://itblogsec.com/wp-content/uploads/2017/02/jMeter-300x160.jpg 300w, https://itblogsec.com/wp-content/uploads/2017/02/jMeter-768x410.jpg 768w, https://itblogsec.com/wp-content/uploads/2017/02/jMeter-1024x547.jpg 1024w" sizes="(max-width: 1216px) 100vw, 1216px" /></a><p id="caption-attachment-576" class="wp-caption-text">Example of jMeter GUI</p></div>
<p style="text-align: justify;">As it is quite complex tool, with many functions, you can find detailed tutorial how to use it <a href="https://www.tutorialspoint.com/jmeter/index.htm" target="_blank" rel="noopener noreferrer"><strong>here</strong></a>.<br />
You can download jMeter official tool <a href="http://jmeter.apache.org/download_jmeter.cgi" target="_blank" rel="noopener noreferrer"><strong>here</strong></a>.</p>
<h3><strong>4. Pingdom Website Speed Test</strong></h3>
<p style="text-align: justify;">One of the online tools which can be used for online benchmark and provide useful information. You can specify website you want to test and as results you can obtain load time, response code, content size, file requests etc. Feel free to use it <a href="https://tools.pingdom.com/" target="_blank" rel="noopener noreferrer"><strong>here</strong></a><strong>.</strong></p>
<div id="attachment_577" style="width: 1006px" class="wp-caption alignnone"><a href="https://itblogsec.com/wp-content/uploads/2017/02/pingdom.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-577" class="border-image wp-image-577 size-full" src="https://itblogsec.com/wp-content/uploads/2017/02/pingdom.jpg" alt="Pingdom online benchmark tool" width="996" height="848" srcset="https://itblogsec.com/wp-content/uploads/2017/02/pingdom.jpg 996w, https://itblogsec.com/wp-content/uploads/2017/02/pingdom-300x255.jpg 300w, https://itblogsec.com/wp-content/uploads/2017/02/pingdom-768x654.jpg 768w" sizes="(max-width: 996px) 100vw, 996px" /></a><p id="caption-attachment-577" class="wp-caption-text">Pingdom online benchmark tool</p></div>
<h3><strong>Conclusion</strong></h3>
<p style="text-align: justify;">Beware there are many free tools related with website (web-server) benchmark. Just use google and you can find many variations. As web administrator you should always pay attention to performance of your website. The best approach is to make benchmark periodically and try to optimize web-server for the best results. Good luck!</p>
<p>The post <a href="https://itblogsec.com/web-server-performance-benchmark-for-free/">Web server performance benchmark for FREE</a> appeared first on <a href="https://itblogsec.com">ITBlogSec.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://itblogsec.com/web-server-performance-benchmark-for-free/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 0/155 objects using XCache
Page Caching using Disk: Enhanced 

Served from: itblogsec.com @ 2025-12-16 21:50:39 by W3 Total Cache
-->