<?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: SSSU / Unix scripting for snapshots. HP-UX &amp;amp; EVA3000 in Storage Software</title>
    <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625213#M642</link>
    <description>I confirm that the SSSU part is fine because I used to use it on Solaris systems. However I have problems to mount the snapshot on an HP-UX system...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It's telling me 'vxfs mount: /dev/vg09/snapshot is corrupted. needs checking'</description>
    <pubDate>Thu, 27 Oct 2005 04:42:14 GMT</pubDate>
    <dc:creator>Jamie.MT</dc:creator>
    <dc:date>2005-10-27T04:42:14Z</dc:date>
    <item>
      <title>SSSU / Unix scripting for snapshots. HP-UX &amp; EVA3000</title>
      <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625209#M638</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;We have an HP-UX server with Virtual Disks presented to it by an EVA3000.&lt;BR /&gt;&lt;BR /&gt;I need to write an SSSU / UNIX script to run each day to:-&lt;BR /&gt;- Delete perious days snapshot(so that it's not seen by the EVA or Unix) &lt;BR /&gt;- Pause Database&lt;BR /&gt;- Flush the Unix cache&lt;BR /&gt;- Take the Snapshot&lt;BR /&gt;- Present snapshot to the Unix server&lt;BR /&gt;- Resume Database&lt;BR /&gt;- Unix commands to mount /make available the snapshot&lt;BR /&gt;- Backup the snapshot to tape.&lt;BR /&gt;&lt;BR /&gt;Could anyone help with some example scripts with the appropiate SSSU and UNIX commands to get me started.&lt;BR /&gt;Any help would be much apreciated.&lt;BR /&gt;David.</description>
      <pubDate>Tue, 13 Sep 2005 16:35:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625209#M638</guid>
      <dc:creator>David Fanning</dc:creator>
      <dc:date>2005-09-13T16:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: SSSU / Unix scripting for snapshots. HP-UX &amp; EVA3000</title>
      <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625210#M639</link>
      <description>I don't have any scripts, but you better create the new snapshot and then trigger the deletion of the old one.</description>
      <pubDate>Wed, 14 Sep 2005 00:12:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625210#M639</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-09-14T00:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: SSSU / Unix scripting for snapshots. HP-UX &amp; EVA3000</title>
      <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625211#M640</link>
      <description>David,&lt;BR /&gt;First of all i want to say that what you are talking about just really complex but probable...&lt;BR /&gt;Last year, i realized it with my HP support&lt;BR /&gt;:-))&lt;BR /&gt;and nowadays i will modify it (because i&lt;BR /&gt;want to do some advance tests)&lt;BR /&gt;when i finished then i really promise you &lt;BR /&gt;to realize it on your env.&lt;BR /&gt;i can not send these scripts now because&lt;BR /&gt;first i have to test...&lt;BR /&gt;so keep this thread open you may also received some best solutions from the other&lt;BR /&gt;members who did it and still use.&lt;BR /&gt;Good Luck,</description>
      <pubDate>Wed, 14 Sep 2005 06:11:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625211#M640</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-09-14T06:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: SSSU / Unix scripting for snapshots. HP-UX &amp; EVA3000</title>
      <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625212#M641</link>
      <description>Hello David,&lt;BR /&gt;&lt;BR /&gt;I include some fragments of scripts that you need.&lt;BR /&gt;&lt;BR /&gt;to delete vdisk&lt;BR /&gt;&lt;BR /&gt;SELECT MANAGER SWMA1 USER=administrator PASSWORD=administrator&lt;BR /&gt;SELECT SYSTEM "EVA1"&lt;BR /&gt;DELETE LUN "\Hosts\unix1\10"&lt;BR /&gt;DELETE VDISK "\Virtual Disks\data\snap_vdisk1\ACTIVE" WAIT_FOR_COMPLETION&lt;BR /&gt;&lt;BR /&gt;you have to set up your Data Base in begin backup mode before start the snapshot.&lt;BR /&gt;&lt;BR /&gt;to create snapshot&lt;BR /&gt;&lt;BR /&gt;SELECT MANAGER SWMA1 USER=administrator PASSWORD=administrator&lt;BR /&gt;SELECT SYSTEM "EVA1"&lt;BR /&gt;ADD SNAPSHOT snap_vdisk1 VDISK="\Virtual Disks\data\vdisk1\ACTIVE" DISKGROUP="\Disk Groups\snap"&lt;BR /&gt;ADD LUN 1 VDISK="\Virtual Disks\data\snap_vdisk1\ACTIVE" HOST="\Hosts\unix1\10"&lt;BR /&gt;&lt;BR /&gt;I expect this information can help you to built the script.&lt;BR /&gt;&lt;BR /&gt;Goor Luck.</description>
      <pubDate>Fri, 30 Sep 2005 17:14:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625212#M641</guid>
      <dc:creator>Duverney Barros Arevalo</dc:creator>
      <dc:date>2005-09-30T17:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: SSSU / Unix scripting for snapshots. HP-UX &amp; EVA3000</title>
      <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625213#M642</link>
      <description>I confirm that the SSSU part is fine because I used to use it on Solaris systems. However I have problems to mount the snapshot on an HP-UX system...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It's telling me 'vxfs mount: /dev/vg09/snapshot is corrupted. needs checking'</description>
      <pubDate>Thu, 27 Oct 2005 04:42:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625213#M642</guid>
      <dc:creator>Jamie.MT</dc:creator>
      <dc:date>2005-10-27T04:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: SSSU / Unix scripting for snapshots. HP-UX &amp; EVA3000</title>
      <link>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625214#M643</link>
      <description>Also, take a look to:&lt;BR /&gt;&lt;BR /&gt;HP StorageWorks Replication Solutions Manager&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h18006.www1.hp.com/products/storage/software/bizcopyeva/" target="_blank"&gt;http://h18006.www1.hp.com/products/storage/software/bizcopyeva/&lt;/A&gt;</description>
      <pubDate>Thu, 27 Oct 2005 08:36:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/storage-software/sssu-unix-scripting-for-snapshots-hp-ux-amp-eva3000/m-p/3625214#M643</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-10-27T08:36:10Z</dc:date>
    </item>
  </channel>
</rss>

