<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: monitoring backups in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197565#M10086</link>
    <description>Vacation no ... new job on new platforms Sun Solaris, with lots to do and learn, nice to be back on a more known ground ... still been having fun, see you have all been busy in this forum i am trying to catch-up on week-end.&lt;BR /&gt;&lt;BR /&gt;Muluesk please, forgive us for the highjack on your topic/question&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre</description>
    <pubDate>Sun, 22 Feb 2004 08:15:33 GMT</pubDate>
    <dc:creator>Huc_1</dc:creator>
    <dc:date>2004-02-22T08:15:33Z</dc:date>
    <item>
      <title>monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197558#M10079</link>
      <description>Is there any way to setup a cron job or something so that I get an email notification when a backup fails, linux 7.1 server.</description>
      <pubDate>Fri, 20 Feb 2004 05:57:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197558#M10079</guid>
      <dc:creator>muluesk</dc:creator>
      <dc:date>2004-02-20T05:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197559#M10080</link>
      <description>This would depend on how you are backing up.  What software are you using?&lt;BR /&gt; &lt;BR /&gt;Generally speaking, the backup software itself is better at determining if the backup was successful or not and is therefore often the best thing to do the alerting if something has gone wrong.</description>
      <pubDate>Fri, 20 Feb 2004 06:09:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197559#M10080</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-02-20T06:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197560#M10081</link>
      <description>There is a jobstack that is setup to kick off at a specified time. you are right the software knows when the Full save is good or not and outputs error messages. I can find out about that by tailing the log file it generates. But the thing is I administer more than a 100 servers and I have to log in to each server from time to time and find out if the save is running or not. If it fails, I have to ran a manual save. What I'm trying to do is get a notification whenever the file save fails so that I can ran the manual save.&lt;BR /&gt;To answer your question, there is no as such a back up SW installed on the server, and there is no GUI, all is done from a command line. And the backup does a system and data save.</description>
      <pubDate>Fri, 20 Feb 2004 06:50:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197560#M10081</guid>
      <dc:creator>muluesk</dc:creator>
      <dc:date>2004-02-20T06:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197561#M10082</link>
      <description>In that case you could set up a cron job that runs a script.  Suppose you want to check every day at 10.00am you cron job will look like this.&lt;BR /&gt; &lt;BR /&gt;00 10 * * * myscript &lt;BR /&gt; &lt;BR /&gt;You script will do something like this&lt;BR /&gt; &lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;grep "ERROR" backuplog &amp;gt; /dev/null &amp;amp;&amp;amp; echo "backup failed on `hostname`|mailx -s "Backup error" e-mail&lt;BR /&gt;cat backuplog &amp;gt;&amp;gt; historylog &amp;amp;&amp;amp; &amp;gt; backuplog&lt;BR /&gt; &lt;BR /&gt;This will re-name your log file to another log file and everyday, your normal log file wil only contains the last 24 hours of log messages.&lt;BR /&gt; &lt;BR /&gt;Obviously, change the word "ERROR" to something that will appear in the log file when you have a backup error.</description>
      <pubDate>Fri, 20 Feb 2004 07:08:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197561#M10082</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-02-20T07:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197562#M10083</link>
      <description>I just noticed a typo in that script.  Missed out a "&lt;BR /&gt; &lt;BR /&gt;grep "ERROR" backuplog &amp;gt; /dev/null &amp;amp;&amp;amp; echo "backup failed on `hostname`"|mailx -s "Backup error" e-mail&lt;BR /&gt; &lt;BR /&gt;is how that line should be.</description>
      <pubDate>Fri, 20 Feb 2004 07:43:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197562#M10083</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-02-20T07:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197563#M10084</link>
      <description>Nice, and simple that one Mark, Just what I needed !...&lt;BR /&gt;&lt;BR /&gt;Just though i would let you know someone read it and appreciated it!&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre&lt;BR /&gt;</description>
      <pubDate>Sun, 22 Feb 2004 05:12:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197563#M10084</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2004-02-22T05:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197564#M10085</link>
      <description>Nice to see you back Huc!&lt;BR /&gt; &lt;BR /&gt;Been on holiday?</description>
      <pubDate>Sun, 22 Feb 2004 07:40:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197564#M10085</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-02-22T07:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197565#M10086</link>
      <description>Vacation no ... new job on new platforms Sun Solaris, with lots to do and learn, nice to be back on a more known ground ... still been having fun, see you have all been busy in this forum i am trying to catch-up on week-end.&lt;BR /&gt;&lt;BR /&gt;Muluesk please, forgive us for the highjack on your topic/question&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre</description>
      <pubDate>Sun, 22 Feb 2004 08:15:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197565#M10086</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2004-02-22T08:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: monitoring backups</title>
      <link>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197566#M10087</link>
      <description>Thank you Mark. I didn't check my email this weekend that is why I didn't reply to you. I will try to setup the cron job like you suggested and will let you know the outcome. If it works you don't have any idea how much time and energy you will be saving me. Thanks for your help again.</description>
      <pubDate>Mon, 23 Feb 2004 00:41:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/monitoring-backups/m-p/3197566#M10087</guid>
      <dc:creator>muluesk</dc:creator>
      <dc:date>2004-02-23T00:41:12Z</dc:date>
    </item>
  </channel>
</rss>

