Tag Archives: apache web server

Recommended Apache-web-server

Server DIY – How To Set Up A Load Balanced High-Availability Apache Cluster!

Well, here’s another way to setup a load balanced, high-availability apache cluster, this will be very informative if you are a webmaster working on high-trafficking sites.

This tutorial shows how to set up a two-node Apache web server cluster that provides high-availability. In front of the Apache cluster we create a load balancer that splits up incoming requests between the two Apache nodes. Because we do not want the load balancer to become another “Single Point Of Failure”, we must provide high-availability for the load balancer, too. Therefore our load balancer

Click Here to Read Full Article

Leave a comment

Linux Server Hack – How to setup a Shell Script to Auto Restart Apache Httpd Server!

Well, I have been struggling with one of my dedicated servers and just found this cool script that will auto-restart the Apache httpd server if it goes out.

Save the following as restart.sh:

#!/bin/bash # Apache Process Monitor # Restart Apache Web Server When It Goes Down # ------------------------------------------------------------------------- # Copyright (c) 2003 nixCraft project <http://cyberciti.biz/fb/> # This script is licensed under GNU GPL version 2.0 or above # ------------------------------------------------------------------------- # This script is par

Click Here to Read Full Article

Leave a comment