Load Testing Web Servers with apache benchmark tool
Command to run the Apache benchmark tool (ab) with 200 simultaneous requests until 2000 requests are completed: # ab -k -c 100 -n 2000 localhost/checkiffileexists.php Let’s run the test and…
Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog
Command to run the Apache benchmark tool (ab) with 200 simultaneous requests until 2000 requests are completed: # ab -k -c 100 -n 2000 localhost/checkiffileexists.php Let’s run the test and…
Knowing how much traffic your web server can handle when under stress is essential for planning future grow of your website or application. By using tool called siege, you can…
You can check the current version of apache by running /usr/sbin/httpd -v CustomBuild – current If you’re using custombuild (as most new boxes are), run the following cd /usr/local/directadmin/custombuild ./build…
Your web server is running on port 80 to listen http connections on AWS Ec2 instnace. After that configured AWS ELB to listen on HTTP and HTTPS protocols and forwarding…
When you have installed an Apache server , the following message may appear on your browser if you try to access a page: <p> 403 Forbidden You don't have permission…
Block IP: <RequireAll> Require all granted Require not ip 1.2.3.4 </RequireAll> Force www, or non www, redirect. #Force www: RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com RewriteRule ^(.*)$ http://www.example.com/$1 #Force www: #Force…
mod_pagespeed is an open-source Apache module created by Google to help Make the Web Faster by rewriting web pages to reduce latency and bandwidth. Please follow below instructions to install…
Django is a Python-based free and open-source web framework that can be used for developing dynamic websites and web applications. In this article, we will explain the procedures to configure…
SVN – Apache subversion SVN – Subversion is a versioning and revision control system used by developers to track and keep up earlier versions of their source codes. Update yum…