<?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 Backup script doesn't work in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807501#M779999</link>
    <description>Can someone help me to find a way my backup scrip works?&lt;BR /&gt;I have a cluster with to nodes with an ultrium tape drive each. One of the nodes is active and the other stby. I have to use both tape drives to make backups.On the active one i took real time backup on its own tape and to the other stby node i want to use only the tape to have a daily backup of the active server. It gives me an error like "is the tape correctly loaded?". The mt command doesn't work on remote tape.&lt;BR /&gt;$tapedev= 10.2.3.5:/dev/rmt/0mn&lt;BR /&gt;</description>
    <pubDate>Sun, 18 Jun 2006 06:23:30 GMT</pubDate>
    <dc:creator>Endrin</dc:creator>
    <dc:date>2006-06-18T06:23:30Z</dc:date>
    <item>
      <title>Backup script doesn't work</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807501#M779999</link>
      <description>Can someone help me to find a way my backup scrip works?&lt;BR /&gt;I have a cluster with to nodes with an ultrium tape drive each. One of the nodes is active and the other stby. I have to use both tape drives to make backups.On the active one i took real time backup on its own tape and to the other stby node i want to use only the tape to have a daily backup of the active server. It gives me an error like "is the tape correctly loaded?". The mt command doesn't work on remote tape.&lt;BR /&gt;$tapedev= 10.2.3.5:/dev/rmt/0mn&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Jun 2006 06:23:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807501#M779999</guid>
      <dc:creator>Endrin</dc:creator>
      <dc:date>2006-06-18T06:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Backup script doesn't work</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807502#M780000</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm afraid, tape commands don't work remotely for HPUX.&lt;BR /&gt;If I'm wrong, I'd like to see examples of such commands ASAP.&lt;BR /&gt;&lt;BR /&gt;Best</description>
      <pubDate>Sun, 18 Jun 2006 09:05:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807502#M780000</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2006-06-18T09:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Backup script doesn't work</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807503#M780001</link>
      <description>The problem is the tape device name used for the mt command in the script. Since you are using tape device name as 10.2.3.5:/dev/rmt/0mn - which is not a tape device name on the server where you are executing this command the mt command fails to rewind the tape and your script displays the error message.&lt;BR /&gt;Another thing is the -t option being obsolent - check man page of mt in your server - now -f should be used. Other thing is if you want to use mt commands on the tape drive on a remote server you could execute for e.g.&lt;BR /&gt;remsh/ssh 10.2.3.5 "mt -f /dev/rmt/0mn rew" , I am not too sure if the device name you are using will work - like 10.2.3.5:/dev/rmt/0mn&lt;BR /&gt;So either use the remsh/ssh  OR you can execute the script on the remote server itself.&lt;BR /&gt;&lt;BR /&gt;If you are using vxfs filesystems then you can also use&lt;BR /&gt;rvxdump which can use tape drive on remote server. Need to see how you are backing up.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ninad&lt;BR /&gt;You could backup to remote tape drive for e.g.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Jun 2006 13:09:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807503#M780001</guid>
      <dc:creator>Ninad_1</dc:creator>
      <dc:date>2006-06-18T13:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Backup script doesn't work</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807504#M780002</link>
      <description>Simple test would be 'mt -t stat' or 'mt -f /dev/rmt/### status' (* same command *)from both local and remote nodes.  So your theory is it will work on local but fail on remote, ie., remsh node -n "mt -t stat".  Do you need help setting up the rlogin?  Refer to hosts.equiv and .rhosts files in:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-60103/rlogin.1.html" target="_blank"&gt;http://docs.hp.com/en/B2355-60103/rlogin.1.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Jun 2006 15:17:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807504#M780002</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2006-06-18T15:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Backup script doesn't work</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807505#M780003</link>
      <description>Change the file confguration on the that node.&lt;BR /&gt;su - informix&lt;BR /&gt;&lt;BR /&gt;I'm not sure about the list of directories in that path. please issue ls -ltr and brig me the output in oredr to remember.&lt;BR /&gt;&lt;BR /&gt;Bye&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jun 2006 18:17:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-script-doesn-t-work/m-p/3807505#M780003</guid>
      <dc:creator>Inter_1</dc:creator>
      <dc:date>2006-06-21T18:17:31Z</dc:date>
    </item>
  </channel>
</rss>

