1. Apache Webserver hit count script
#!/bin/bash
cd <path to apache logs..>
i=`date +%d/%b/%Y`
j=`cat apache-access.log | grep “$i” | grep “GET / HTTP/1.1” | wc -l`
echo “No. of Apache Access Count:$j”
2. Monitor Apache Web Server Load and Page Statistics
http://www.tecmint.com/monitor-apache-web-server-load-and-page-statistics/
3.Apache Virtual Host
http://www.tecmint.com/apache-ip-based-and-name-based-virtual-hosting/
#!/bin/bash
cd <path to apache logs..>
i=`date +%d/%b/%Y`
j=`cat apache-access.log | grep “$i” | grep “GET / HTTP/1.1” | wc -l`
echo “No. of Apache Access Count:$j”
2. Monitor Apache Web Server Load and Page Statistics
http://www.tecmint.com/monitor-apache-web-server-load-and-page-statistics/
3.Apache Virtual Host
http://www.tecmint.com/apache-ip-based-and-name-based-virtual-hosting/
No comments:
Post a Comment