<?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: Automatic Ignite backup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805599#M267273</link>
    <description>You could schedule the script make_tape_recovery(1M) or&lt;BR /&gt;make_net_recovery(1M) via Cron.&lt;BR /&gt;</description>
    <pubDate>Wed, 14 Jun 2006 06:03:46 GMT</pubDate>
    <dc:creator>David Nixon</dc:creator>
    <dc:date>2006-06-14T06:03:46Z</dc:date>
    <item>
      <title>Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805596#M267270</link>
      <description>Hi!&lt;BR /&gt;Is there any way to make some shedule in Ignite to make backups on different days?</description>
      <pubDate>Wed, 14 Jun 2006 05:14:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805596#M267270</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2006-06-14T05:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805597#M267271</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I don't think there is a scheduling feature in Ignite....anyway you can do that by cron.&lt;BR /&gt;Insert a line in crontab for days when you wish to launch backups.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Fabio&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Jun 2006 05:18:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805597#M267271</guid>
      <dc:creator>Fabio Ettore</dc:creator>
      <dc:date>2006-06-14T05:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805598#M267272</link>
      <description>You can use unix native , crontab for scheduling.&lt;BR /&gt;&lt;BR /&gt;And put make_tape_recovery or make_net_recovery in cron with the help of a script.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Wed, 14 Jun 2006 05:48:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805598#M267272</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2006-06-14T05:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805599#M267273</link>
      <description>You could schedule the script make_tape_recovery(1M) or&lt;BR /&gt;make_net_recovery(1M) via Cron.&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Jun 2006 06:03:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805599#M267273</guid>
      <dc:creator>David Nixon</dc:creator>
      <dc:date>2006-06-14T06:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805600#M267274</link>
      <description>Just create a cron job. here is a copy of the script I use. One note this on Itanium but should work. If not change the "BOT" to "DDS".&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;# Program: ignite.sh&lt;BR /&gt;# Purpose: SEND results from Ignite to the UNIX ADMINISTRATORS&lt;BR /&gt;&lt;BR /&gt;Rev=1.3&lt;BR /&gt;# Mods:&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt; &lt;BR /&gt;# Globals&lt;BR /&gt;PATH=/usr/bin:/sbin&lt;BR /&gt;HOST=$(hostname)&lt;BR /&gt;DEV=/dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;ADMINS=Unix_Admins-T@xxx.xxx    #  Admins&lt;BR /&gt;LOG=/var/adm/make_recovery.msgs&lt;BR /&gt;DATE=$(date)&lt;BR /&gt;TODAY=$(date +%m/%d/%y)&lt;BR /&gt;PROG=$(basename $0)&lt;BR /&gt;SUBJ="Ignite results from ${HOST}, on ${DATE}" # 1.1&lt;BR /&gt; &lt;BR /&gt;# MAIN&lt;BR /&gt; &lt;BR /&gt;# cleanup /etc/lvmconf&lt;BR /&gt;cd /etc/lvmconf         # 1.2&lt;BR /&gt;rm -f vg*.conf.old      # 1.2&lt;BR /&gt; &lt;BR /&gt;# Make sure we have a tape in the drive&lt;BR /&gt;STAT=$(mt -f ${DEV} stat)&lt;BR /&gt;TAPELOADED=$(print ${STAT} | grep "BOT online") # 1.3&lt;BR /&gt; &lt;BR /&gt;if [ "${TAPELOADED}x" = "x" ]; then&lt;BR /&gt;        mailx -s "${SUBJ}" ${ADMINS} &amp;lt;${LOG} # Create LOG &amp;amp; Note prog name &amp;amp; rev.&lt;BR /&gt;        /opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I &amp;gt;&amp;gt;${LOG} 2&amp;gt;&amp;amp;1&lt;BR /&gt; &lt;BR /&gt;        # Check Log for sucessful &amp;amp; only email if unsuccessful or warning&lt;BR /&gt;        SUCCESS=$(tail ${LOG} | grep "completed successfully")&lt;BR /&gt;        if [ "${SUCCESS}x" = "x" ]; then&lt;BR /&gt;                mailx -s "${SUBJ}" ${ADMINS} &amp;lt;${LOG}&lt;BR /&gt;        fi&lt;BR /&gt;        mt -f ${DEV} rew&lt;BR /&gt;fi&lt;BR /&gt; &lt;BR /&gt;# cleanup /etc/lvmconf&lt;BR /&gt;cd /etc/lvmconf         # 1.2&lt;BR /&gt;rm -f vg*.conf.old      # 1.2&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Sp4admin&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Jun 2006 10:29:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805600#M267274</guid>
      <dc:creator>Sp4admin</dc:creator>
      <dc:date>2006-06-14T10:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805601#M267275</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Igor,&lt;BR /&gt;&lt;BR /&gt;We use cron to schedule a weekly ignite net backup.&lt;BR /&gt;&lt;BR /&gt;Dave</description>
      <pubDate>Wed, 14 Jun 2006 10:32:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805601#M267275</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2006-06-14T10:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805602#M267276</link>
      <description>Create a script file that does the ignite part "ex. make_tape_recovery -options -device. "&lt;BR /&gt;&lt;BR /&gt;Then do a crontab -e  to schedule your job.&lt;BR /&gt;&lt;BR /&gt;Ex. This runs the ignite_backup script at june 01 @ 4am.&lt;BR /&gt;&lt;BR /&gt;00 04 01 06 * /scripts/ignite_backup.sh&lt;BR /&gt;&lt;BR /&gt;cheers,&lt;BR /&gt;f.halili</description>
      <pubDate>Wed, 14 Jun 2006 10:36:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805602#M267276</guid>
      <dc:creator>f. halili</dc:creator>
      <dc:date>2006-06-14T10:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805603#M267277</link>
      <description>Igor,  I think that you should probably look at the crontab functionality for this...&lt;BR /&gt;&lt;BR /&gt;Or did someone else already mention that? :)&lt;BR /&gt;&lt;BR /&gt;Phil</description>
      <pubDate>Wed, 14 Jun 2006 10:39:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805603#M267277</guid>
      <dc:creator>Phillip Thayer</dc:creator>
      <dc:date>2006-06-14T10:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805604#M267278</link>
      <description>come on give a new guy some points...:-)</description>
      <pubDate>Thu, 15 Jun 2006 13:20:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805604#M267278</guid>
      <dc:creator>Sp4admin</dc:creator>
      <dc:date>2006-06-15T13:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805605#M267279</link>
      <description>You can use SAM to do an automate backup to the system.&lt;BR /&gt;&lt;BR /&gt;#sam&lt;BR /&gt;&lt;BR /&gt;Backup and Recovery&lt;BR /&gt;&amp;gt;&amp;gt; Automated Backup&lt;BR /&gt;   &amp;gt;&amp;gt; Actions&lt;BR /&gt;      &amp;gt;&amp;gt; Add</description>
      <pubDate>Thu, 15 Jun 2006 20:49:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/automatic-ignite-backup/m-p/3805605#M267279</guid>
      <dc:creator>Mohd Azril Dollah</dc:creator>
      <dc:date>2006-06-15T20:49:09Z</dc:date>
    </item>
  </channel>
</rss>

