<?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: I don´t want see system disc between cluster nodes in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258349#M100391</link>
    <description>&amp;gt;&amp;gt;&amp;gt;Do you know wich params a need modify for each node only be able to see the owner operating system?&lt;BR /&gt;&lt;BR /&gt;mount/cluster - mount clusterwide&lt;BR /&gt;mount/system - mount systemwide&lt;BR /&gt;&lt;BR /&gt;To know more about commands have a look at the VMS help of mount command. &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Bhadresh&lt;BR /&gt;</description>
    <pubDate>Tue, 12 Oct 2010 05:17:29 GMT</pubDate>
    <dc:creator>Bhadresh</dc:creator>
    <dc:date>2010-10-12T05:17:29Z</dc:date>
    <item>
      <title>I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258343#M100385</link>
      <description>Hi&lt;BR /&gt;I have a cluster ovms 8.3 integrity with eva.&lt;BR /&gt;&lt;BR /&gt;when I acces to node 1, I be able to see the operating system for node 2 and viceversa.&lt;BR /&gt;&lt;BR /&gt;Do you know wich params a need modify for each node only be able to see the owner operating system?&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Sat, 09 Oct 2010 17:37:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258343#M100385</guid>
      <dc:creator>Edgar Ulloa</dc:creator>
      <dc:date>2010-10-09T17:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258344#M100386</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] see the operating system [...]&lt;BR /&gt;&lt;BR /&gt;Do you mean "see the (MSCP-served) system&lt;BR /&gt;disk" of another system?&lt;BR /&gt;&lt;BR /&gt;      mcr sysgen show mscp_serve_all&lt;BR /&gt;&lt;BR /&gt;      mcr sysgen help SYS_PARAMETERS MSCP_SERVE_ALL&lt;BR /&gt;&lt;BR /&gt;Look for "Bit 2".&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Why is this a problem?</description>
      <pubDate>Sat, 09 Oct 2010 20:29:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258344#M100386</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-10-09T20:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258345#M100387</link>
      <description>Edgar,&lt;BR /&gt;&lt;BR /&gt;By "see", do you mean the actual device, or the device being mounted. There is a difference.&lt;BR /&gt;&lt;BR /&gt;It is common for the device to be visible, but not generally mounted on other nodes. For non-privileged users, this effectively makes the device inaccessible. Management-level users are a completely different subject.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Sun, 10 Oct 2010 02:22:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258345#M100387</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2010-10-10T02:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258346#M100388</link>
      <description>Edgar,&lt;BR /&gt;&lt;BR /&gt;  My assumption... You have two (or more) system disks in your cluster, and you want all nodes to be able to see them all.&lt;BR /&gt;&lt;BR /&gt;  By default, system disks are mounted /SYSTEM (not /CLUSTER) when the system boots. In a single system disk cluster, all nodes see it because they all mount it individually, as they boot. &lt;BR /&gt;&lt;BR /&gt;  So, you will need to mount the "other" system disk on each of your systems - I'd suggest using /CLUSTER. You should probably also remount the system disk on each node /CLUSTER during startup, otherwise you have timing issues.&lt;BR /&gt;&lt;BR /&gt;  A few things, before mounting the disk, make sure it exists, and skip the mount if it's already been mounted: &lt;BR /&gt;&lt;BR /&gt;$ IF F$GETDVI(disk,"EXISTS")&lt;BR /&gt;$ THEN&lt;BR /&gt;$   IF .NOT.F$GETDVI(disk,"MNT)&lt;BR /&gt;$   THEN&lt;BR /&gt;$     WRITE SYS$OUTPUT "Mounting ''disk'"&lt;BR /&gt;$     MOUNT/CLUSTER 'disk' label&lt;BR /&gt;$   ENDIF&lt;BR /&gt;$ ENDIF&lt;BR /&gt;&lt;BR /&gt;For the local system disk, mount it unconditionally:&lt;BR /&gt;&lt;BR /&gt;$ MOUNT/CLUSTER 'F$TRNLNM("SYS$SYSDEVICE")' 'F$GETDVI("SYS$SYSDEVICE","VOLNAM")'&lt;BR /&gt;&lt;BR /&gt;This is generic code which should work on all OpenVMS systems. It's quite safe to execute it at any time.&lt;BR /&gt;&lt;BR /&gt;So, the MOUNT command for the "other" system disk will mount it on nodes which boot after all the nodes which boot from that disk. The MOUNT command for the "own" system disk will mount it on nodes which were booted before the booting node.&lt;BR /&gt;&lt;BR /&gt;Note that multiple system disks are not very well supported by OpenVMS, there are many pitfalls if you've never configured one before. It's a good idea to engage the services of someone with prior experience. Unfortunately there are several misconfigurations which aren't revealed until they blow up in your face.</description>
      <pubDate>Mon, 11 Oct 2010 01:42:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258346#M100388</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2010-10-11T01:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258347#M100389</link>
      <description>Edgar,&lt;BR /&gt;&lt;BR /&gt;  Oops, got that the wrong way around! If you CAN see the other system disk, then your startup must be explicitly mounting it. Look through your startup procedures and remove the extra MOUNT commands for the other system disks.&lt;BR /&gt;&lt;BR /&gt;  If you're on a single system disk, then you have no choice. All nodes which boot from the same disk, must (obviously) be able to see what's on that disk. That includes the system roots for any other nodes on the disk. There's no way you can block access to the other roots.</description>
      <pubDate>Mon, 11 Oct 2010 01:45:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258347#M100389</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2010-10-11T01:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258348#M100390</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Do you mean [...]?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; By "see", do you mean [...][?]&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  My assumption... [...]&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  Oops, got that the wrong way around! [...]&lt;BR /&gt;&lt;BR /&gt;In case you haven't noticed, no one can&lt;BR /&gt;reliably determine exactly what you are able&lt;BR /&gt;to see, or exactly what you want to be able&lt;BR /&gt;to see, or exactly how these systems are&lt;BR /&gt;configured, or much else.  As usual, showing&lt;BR /&gt;actual commands with their actual output can&lt;BR /&gt;be more helpful than vague descriptions or&lt;BR /&gt;interpretations.</description>
      <pubDate>Mon, 11 Oct 2010 02:27:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258348#M100390</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-10-11T02:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258349#M100391</link>
      <description>&amp;gt;&amp;gt;&amp;gt;Do you know wich params a need modify for each node only be able to see the owner operating system?&lt;BR /&gt;&lt;BR /&gt;mount/cluster - mount clusterwide&lt;BR /&gt;mount/system - mount systemwide&lt;BR /&gt;&lt;BR /&gt;To know more about commands have a look at the VMS help of mount command. &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Bhadresh&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Oct 2010 05:17:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258349#M100391</guid>
      <dc:creator>Bhadresh</dc:creator>
      <dc:date>2010-10-12T05:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258350#M100392</link>
      <description>&lt;!--!*#--&gt;&amp;gt; mount/cluster - mount clusterwide&lt;BR /&gt;&amp;gt; mount/system - mount systemwide&lt;BR /&gt;&lt;BR /&gt;Yeah, except that the user typically doesn't&lt;BR /&gt;explicitly mount his system disk.  Also, as&lt;BR /&gt;I interpreted the original question, the&lt;BR /&gt;complaint might have involved seeing the disk&lt;BR /&gt;device, not necessarily the files thereon.&lt;BR /&gt;&lt;BR /&gt;Of course, the original question was so&lt;BR /&gt;unclear that it's hard to know exactly what&lt;BR /&gt;was sought.</description>
      <pubDate>Tue, 12 Oct 2010 05:54:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258350#M100392</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-10-12T05:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258351#M100393</link>
      <description>Thanks a lot&lt;BR /&gt;&lt;BR /&gt;Your knowlodge help to me to solve this concern.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Tue, 12 Oct 2010 10:07:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258351#M100393</guid>
      <dc:creator>Edgar Ulloa</dc:creator>
      <dc:date>2010-10-12T10:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258352#M100394</link>
      <description>&amp;gt;&amp;gt;&amp;gt; Thanks a lot&lt;BR /&gt;&lt;BR /&gt;Refer the following link which says how you can thank the forum -&lt;BR /&gt;&lt;A href="http://forums13.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums13.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Bhadresh&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Oct 2010 11:42:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258352#M100394</guid>
      <dc:creator>Bhadresh</dc:creator>
      <dc:date>2010-10-12T11:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: I don´t want see system disc between cluster nodes</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258353#M100395</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Your knowlodge help to me to solve this&lt;BR /&gt;&amp;gt; concern.&lt;BR /&gt;&lt;BR /&gt;Some future reader might benefit from an&lt;BR /&gt;explanation of what you did to solve the&lt;BR /&gt;problem.  (So far, no one is sure what either&lt;BR /&gt;the problem or the solution was.)</description>
      <pubDate>Tue, 12 Oct 2010 14:47:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/i-don-t-want-see-system-disc-between-cluster-nodes/m-p/5258353#M100395</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-10-12T14:47:07Z</dc:date>
    </item>
  </channel>
</rss>

