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!
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
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! :-)
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.