<?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: Shared System disk in cluster in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186553#M61886</link>
    <description>A non-trivial excerise. RTFM but&lt;BR /&gt;basically copy one of the system disks to a disk of at least the same capacity in the shared storage. Examine startup files on both system disks and create common startup files taking account any differences on the shared disk. Create a second root on the that disk using SYS$MANAGER:CLUSTER_CONFIG_LAN.COM&lt;BR /&gt;You may wish to continue using the page and swap files on the current system disks - in which case make suitable edits in SYPAGSWPFILES .COM. Ditto for dump files (read up about DOSD).&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 09 Feb 2004 12:46:27 GMT</pubDate>
    <dc:creator>Ian Miller.</dc:creator>
    <dc:date>2004-02-09T12:46:27Z</dc:date>
    <item>
      <title>Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186551#M61884</link>
      <description>I have a 2-node cluster, each node with its own system disk.(VMS 7-31) I want to use disks in a storage module as system disk shared between the 2 nodes. What is recommended way of achieving this? thanks in adavnce.</description>
      <pubDate>Mon, 09 Feb 2004 11:34:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186551#M61884</guid>
      <dc:creator>Zahid Ghani</dc:creator>
      <dc:date>2004-02-09T11:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186552#M61885</link>
      <description>Hello Zahid&lt;BR /&gt;&lt;BR /&gt;It depends very much on how your existing cluster is configured.&lt;BR /&gt;&lt;BR /&gt;You should check out the cluster documentation available at &lt;A href="http://h7100.www7.hp.com/doc/731final/4477/4477pro.html" target="_blank"&gt;http://h7100.www7.hp.com/doc/731final/4477/4477pro.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;ML</description>
      <pubDate>Mon, 09 Feb 2004 12:17:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186552#M61885</guid>
      <dc:creator>Mac Lilley</dc:creator>
      <dc:date>2004-02-09T12:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186553#M61886</link>
      <description>A non-trivial excerise. RTFM but&lt;BR /&gt;basically copy one of the system disks to a disk of at least the same capacity in the shared storage. Examine startup files on both system disks and create common startup files taking account any differences on the shared disk. Create a second root on the that disk using SYS$MANAGER:CLUSTER_CONFIG_LAN.COM&lt;BR /&gt;You may wish to continue using the page and swap files on the current system disks - in which case make suitable edits in SYPAGSWPFILES .COM. Ditto for dump files (read up about DOSD).&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Feb 2004 12:46:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186553#M61886</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-02-09T12:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186554#M61887</link>
      <description>Zahid,&lt;BR /&gt;&lt;BR /&gt;most important is deciding WHAT is common and WHAT is specific. As long as only one node boots off a system root, the difference is not that important, and often it gets blurred.&lt;BR /&gt;&lt;BR /&gt;A multi-node systemdisk has topdirectories [SYSn] per node, and a topdir [VMS$COMMON].&lt;BR /&gt;The real trick is, in each [SYSn] there is a subdir [SYSCOMMON] that is only a pointer (alias) to VMS$COMMON. Physically it is not really there, but functionally it is.&lt;BR /&gt;CLUSTER_CONFIG.COM creates the base files in the correct locations. Now it is YOU who has to do the merging of everything you ever added to your systems, and EACH time you have to decide: CAN this be common (same code, same setups, whatever) or is it REALLY node-specific (device specifications, network definitions, that kind of stuff). &lt;BR /&gt;Bear in mind that eg, defining logical names or queues or whatever that contain the different nodenames, this code can still be common:&lt;BR /&gt;&lt;BR /&gt;$ node = f$getsyi("nodename")&lt;BR /&gt;$ define/SYSTEM WHATEVER somename_'node'&lt;BR /&gt;&lt;BR /&gt;Takes a little more effort setting up, but pays back manyfold in having only one procedure to maintain, and always being sure that it is the same code all over.&lt;BR /&gt;&lt;BR /&gt;(btw, not EVERYTHING works flawless using Cluster_Wide logical names, but THEY also offer REAL convenience) &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may be pretty confident that unaltered, OS-delevered files are at the correct location.&lt;BR /&gt;&lt;BR /&gt;Hope I didn't overwhelm you, but it REALLY is worth the effort: with two system disks, you are effectively maintaining two systems + some overhead; with one disk, you maintain one system + the less overhead!!&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;&lt;BR /&gt;Jan</description>
      <pubDate>Mon, 09 Feb 2004 15:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186554#M61887</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-02-09T15:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186555#M61888</link>
      <description>Consider this as well:&lt;BR /&gt;&lt;BR /&gt;To boot a system from a disk, the system has to have physical access to that disk. This is true with HS- or SAN-based disks, where each systm has a controller that connects that system directly to the storage system. &lt;BR /&gt;&lt;BR /&gt;There is one exception to that rule: on system acts as boot node, the other as satellite. But then, system 2 depends on the availability of system 1.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Dieter</description>
      <pubDate>Tue, 10 Feb 2004 02:01:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186555#M61888</guid>
      <dc:creator>Dieter Rossbach</dc:creator>
      <dc:date>2004-02-10T02:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186556#M61889</link>
      <description>Thanks for your replies. &lt;BR /&gt;This is what i did:&lt;BR /&gt;I have two nodes, Node1 and node2 with thier own system disks. I (image)copied node1 system disk to a new disk. Booted node 1 from this new disk. Ran Cluster_ config to create sys1 directory. On reboot the second node 'hung' while complainig about  root directory.&lt;BR /&gt; The reason I posted this question was  'is there recommended way to create the system disk eg do you create 2 standalone systems and then run cluster _config on a particular node to create the second sys share, or from an existing cluster do you need to run Cluster-config.</description>
      <pubDate>Tue, 10 Feb 2004 04:02:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186556#M61889</guid>
      <dc:creator>Zahid Ghani</dc:creator>
      <dc:date>2004-02-10T04:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Shared System disk in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186557#M61890</link>
      <description>existing node runs cluster config. &lt;BR /&gt;Did you change the boot flags of the node booting from SYS1?&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Feb 2004 04:07:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/shared-system-disk-in-cluster/m-p/3186557#M61890</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2004-02-10T04:07:38Z</dc:date>
    </item>
  </channel>
</rss>

