<?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: Need help on ignite backup script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499594#M680733</link>
    <description>Hi Gaby:&lt;BR /&gt;&lt;BR /&gt;Using Ignite to make a recovery tape is easy:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;/opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn&lt;BR /&gt;IGNITE_RC=$?&lt;BR /&gt;if (( $IGNITE_RC != 1 ))&lt;BR /&gt;then&lt;BR /&gt;  mt -t /dev/rmt/0m offl &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;fi&lt;BR /&gt;mailx -s "IGNITE Notification (rc=${IGNITE_RC})" root &amp;lt; /dev/null&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;This will create a recovery tape of all of vg00.  Change the tape device if necessary.  The result (success or failure) of the operation will be mailed to the root account (under which this should run).  If successful, the tape will be ejected from its drive for "safety".&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Thu, 17 Sep 2009 14:46:18 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2009-09-17T14:46:18Z</dc:date>
    <item>
      <title>Need help on ignite backup script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499591#M680730</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I need help for modifying the attached script to take ignite backup to tape.&lt;BR /&gt;Earlier I was using this script to take ignite backup of my server to snah5(server name in the script).&lt;BR /&gt;Now We have decommisioned the snah5 server and would like to take ignite backup of &lt;BR /&gt;my HP-UX machine (10.20) to the tape drive connected.&lt;BR /&gt;&lt;BR /&gt;Please help...&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Gaby</description>
      <pubDate>Thu, 17 Sep 2009 14:23:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499591#M680730</guid>
      <dc:creator>Gaby1110</dc:creator>
      <dc:date>2009-09-17T14:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on ignite backup script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499592#M680731</link>
      <description>Hi,&lt;BR /&gt;these are two different things so changing the script is not that simple.&lt;BR /&gt;&lt;BR /&gt;To run the ignite on tape use 'make_tape_recovery' instead of make_net_recovery.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Sep 2009 14:35:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499592#M680731</guid>
      <dc:creator>Stephan.</dc:creator>
      <dc:date>2009-09-17T14:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on ignite backup script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499593#M680732</link>
      <description>Your CMD should be &lt;BR /&gt;/opt/ignite/bin/make_tape_recovery -a ${NTAPE}&lt;BR /&gt;&lt;BR /&gt;where NTAPE is device name for Tape&lt;BR /&gt;ex: /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Goodluck&lt;BR /&gt;&lt;BR /&gt;-USA..</description>
      <pubDate>Thu, 17 Sep 2009 14:37:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499593#M680732</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2009-09-17T14:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on ignite backup script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499594#M680733</link>
      <description>Hi Gaby:&lt;BR /&gt;&lt;BR /&gt;Using Ignite to make a recovery tape is easy:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;/opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn&lt;BR /&gt;IGNITE_RC=$?&lt;BR /&gt;if (( $IGNITE_RC != 1 ))&lt;BR /&gt;then&lt;BR /&gt;  mt -t /dev/rmt/0m offl &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;fi&lt;BR /&gt;mailx -s "IGNITE Notification (rc=${IGNITE_RC})" root &amp;lt; /dev/null&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;This will create a recovery tape of all of vg00.  Change the tape device if necessary.  The result (success or failure) of the operation will be mailed to the root account (under which this should run).  If successful, the tape will be ejected from its drive for "safety".&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 17 Sep 2009 14:46:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-on-ignite-backup-script/m-p/4499594#M680733</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-09-17T14:46:18Z</dc:date>
    </item>
  </channel>
</rss>

