How To Restart Apache Using cron If the Load Gets Too High

Author: , February 3rd, 2016

There are times when the hackers slam my servers and the load gets too high. I use a very simple bash script as a cron job to monitor the load and take action when it gets too high. The script will stop httpd, sleep for a configurable period of time (currently 3 minutes), then start […]

How To GZip Uncompressed Files Older Than a Week Using Find

Author: , August 29th, 2014

find . -mtime +7 ! -name “*.gz” -exec gzip {} \;