Report this

What is the reason for this report?

server status check notice via email for server fault

Posted on May 28, 2015

Hi, I am looking for something that will give me notice via email of a down server or other fault such as overload. Can you please recommend something Thanks.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

This question was answered by @amol:

If you have a separate server to run your check script on, something like this would do a simple Ping test to see if the server is alive: Cron this script.

#!/bin/bash SERVERIP=IP_Address NOTIFYEMAIL=test@example.com

ping -c 3 $SERVERIP > /dev/null 2>&1 if [ $? -ne 0 ] then

Use your favorite mailer here:

mailx -s “Server $SERVERIP is down” -t “$NOTIFYEMAIL” < /dev/null fi

View the original comment

First off - thanks for sharing @amol - am curious about this, sooo:

**Question(s) **

  • Am new to this. Is such a script completely safe? Does one need to harden the server or network in some way when croning something like this?

  • Can frequent pinging affect server load / bandwidth and thus impact the server’s speed/performance negatively?

  • Am not a code wiz - just a dude. How often does this script ping? (I know, sry - can’t even deduct from the code - duh!)

Anebody by chance feel like doing DigitalO writeup/setup tut for this using SSH or what the heck it’s called nowadays? Something set-by-step’ish for dummies like me - preferably something with real-life config example values… or perhaps someone can throw a link if similar has already been made available (?)

Don’t hope you mind the q’s/input. Appreciate it! :-)

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.