<?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: UPS configuration: HP-UX and EMC Clariion in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729792#M65131</link>
    <description>On HP-UX I found the command-line utility "navicli". This provides some "getxxx" commands like getcrus, getcontrol, getconfig, getagent, getcache, ...&lt;BR /&gt;&lt;BR /&gt;Does someone know if I can use the output of one of these commands upon boot to find out if the disk array is fully operational to that the lvm can access the disks?</description>
    <pubDate>Tue, 04 Jun 2002 06:44:33 GMT</pubDate>
    <dc:creator>Jens Ebert</dc:creator>
    <dc:date>2002-06-04T06:44:33Z</dc:date>
    <item>
      <title>UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729785#M65124</link>
      <description>Perhapes anyone faced the same szenario and has some information for us:&lt;BR /&gt;&lt;BR /&gt;Two HP-UX 11.0 servers (L1000/L3000) are sharing one EMC Clariion disk array. Both have a separate UPS system, the EMC is connected to one of these.&lt;BR /&gt;&lt;BR /&gt;Power failure: First the servers have to shut down their applications and halt, the Clariion has to be available and shut down afterwards.&lt;BR /&gt;&lt;BR /&gt;Power restore: First the Clariion has to be ready before the servers start to boot.&lt;BR /&gt;&lt;BR /&gt;How can this be archived? Up to EMC (they are of no help at all!) there is no solution to have communication take place between the systems.</description>
      <pubDate>Thu, 23 May 2002 05:44:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729785#M65124</guid>
      <dc:creator>Jens Ebert</dc:creator>
      <dc:date>2002-05-23T05:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729786#M65125</link>
      <description>Additional information is required to answer this properly -&lt;BR /&gt;&lt;BR /&gt;1. What type of EMC/Clariion array?&lt;BR /&gt;2. Is this a SAN or an FCAL configuration?&lt;BR /&gt;3. What are you tring to acomplish with this &lt;BR /&gt;   configuration?</description>
      <pubDate>Fri, 24 May 2002 14:27:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729786#M65125</guid>
      <dc:creator>Edward Thibeault</dc:creator>
      <dc:date>2002-05-24T14:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729787#M65126</link>
      <description>We have a FC4500 with two sorage processors (SPA/SPB) installed. Both are directly connected via FC cables to the L-class servers. So both servers share the Clariion, using parts of the disks installed.&lt;BR /&gt;&lt;BR /&gt;All works fine, but right now there is no "power failure szenario" that was available with old EMC Centriplex systems ore HP disk arrays.</description>
      <pubDate>Mon, 27 May 2002 12:12:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729787#M65126</guid>
      <dc:creator>Jens Ebert</dc:creator>
      <dc:date>2002-05-27T12:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729788#M65127</link>
      <description>Jens,&lt;BR /&gt;The most elegant way would be to use an UPS that switches the outlets at different times on.&lt;BR /&gt;Otherwise you have to include a sleep in the /sbin/lvmrc to give the diskarray time to spin up before the hp-ux expects the disks.&lt;BR /&gt;&lt;BR /&gt;Example for a 20 second sleep:&lt;BR /&gt;&lt;BR /&gt;#vi sleep20.c:&lt;BR /&gt;&lt;BR /&gt;#include&lt;UNISTD.H&gt;&lt;BR /&gt;main()&lt;BR /&gt;{&lt;BR /&gt;    sleep(20);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;compile and copy to /sbin:&lt;BR /&gt;# cc -Wl,-a,archive sleep20.c -o sleep20&lt;BR /&gt;# mv sleep20 /sbin/sleep20&lt;BR /&gt;&lt;BR /&gt;2) include in /sbin/lvmrc&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;. &lt;BR /&gt;. &lt;BR /&gt;. &lt;BR /&gt;default_vg_activation()&lt;BR /&gt;{&lt;BR /&gt;        if [ -r /etc/lvmtab ]&lt;BR /&gt; echo " Waiting for Disk Array to spin up..."&lt;BR /&gt; /sbin/sleep20&lt;BR /&gt;        then echo "Waited 20 seconds for Disk Array to spin up"&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;}&lt;BR /&gt;. &lt;BR /&gt;. &lt;BR /&gt;.&lt;BR /&gt;&lt;/UNISTD.H&gt;</description>
      <pubDate>Mon, 27 May 2002 15:14:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729788#M65127</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2002-05-27T15:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729789#M65128</link>
      <description>Patrick,&lt;BR /&gt;we do not know in detail how long the Clariion will need to recover from a power failure. If we use a constant time to wait, this has to be "long". But in this case the system boot always will be delayed even if there was no power failure.&lt;BR /&gt;&lt;BR /&gt;It should be possible to ask the disk array for it's status and to decide if the boot process has to be delayed or not.&lt;BR /&gt;&lt;BR /&gt;Nobody else has this problem??&lt;BR /&gt;&lt;BR /&gt;Thank you, Jens</description>
      <pubDate>Tue, 28 May 2002 09:32:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729789#M65128</guid>
      <dc:creator>Jens Ebert</dc:creator>
      <dc:date>2002-05-28T09:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729790#M65129</link>
      <description>The Clariion array need 3 minutes to fully power up and make all devices available to the connected system. During a power fail situation the system (Clariion) has its own SPS (standby power supply) so it can shed cache. This opreation will take no more than 90 seconds, then the disk array will shut down.</description>
      <pubDate>Tue, 28 May 2002 19:04:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729790#M65129</guid>
      <dc:creator>Edward Thibeault</dc:creator>
      <dc:date>2002-05-28T19:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729791#M65130</link>
      <description>Beside the delay of a fixed period of time, is there no command-line utility for the Clariion, that can be used to check it status? If this status would report "ready, up to use", the HP-UX servers could continue to boot.&lt;BR /&gt;&lt;BR /&gt;Is this kind of utility available?</description>
      <pubDate>Fri, 31 May 2002 05:47:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729791#M65130</guid>
      <dc:creator>Jens Ebert</dc:creator>
      <dc:date>2002-05-31T05:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729792#M65131</link>
      <description>On HP-UX I found the command-line utility "navicli". This provides some "getxxx" commands like getcrus, getcontrol, getconfig, getagent, getcache, ...&lt;BR /&gt;&lt;BR /&gt;Does someone know if I can use the output of one of these commands upon boot to find out if the disk array is fully operational to that the lvm can access the disks?</description>
      <pubDate>Tue, 04 Jun 2002 06:44:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729792#M65131</guid>
      <dc:creator>Jens Ebert</dc:creator>
      <dc:date>2002-06-04T06:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: UPS configuration: HP-UX and EMC Clariion</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729793#M65132</link>
      <description>Jens,&lt;BR /&gt;&lt;BR /&gt;You should REARRANGE your POWER feeds!&lt;BR /&gt;&lt;BR /&gt;ONE L6-30P from your Clariion into one UPS#1, and the other L6-30P into UPS#2. You'll probably need to change power cords.&lt;BR /&gt;&lt;BR /&gt;Then do the same for your L-class servers - which will RUN on a SINGLE power supply! The L's are designed to have three power supplies and should be wired that way to UPS's. Have one PDU into UPS#1 and another PDU into UPS#2.&lt;BR /&gt;&lt;BR /&gt;As for booting after a power failure, I always do MANUAL intervention on systems that rely on EXTERNAL storage unless I can be guaranteed that the storage device will always be ready. I would not want to screw around with having to reboot the HP's again if they timeout because the Clariion (or any disk subsystem for that matter) isn't ready. &lt;BR /&gt;&lt;BR /&gt;The Clariions should be up and running WAY before the HP's are ready to boot, so you shouldn't have any issues!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 04 Jun 2002 10:55:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ups-configuration-hp-ux-and-emc-clariion/m-p/2729793#M65132</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-06-04T10:55:14Z</dc:date>
    </item>
  </channel>
</rss>

