<?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 create mount point in cluster in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365198#M346604</link>
    <description>hi&lt;BR /&gt;  I am configuring a MCSG with vxvm.the customer want /sap/tmp in storage disk &amp;amp; /sap/tmp/run in local disk.&lt;BR /&gt;i tried a lot but the package is not running. finally i caeated same mount point in local and in storage also.. now the package is running.but when the primary node is halted i am not able to view the file(i created one test file) in local mount poing.&lt;BR /&gt;  in adoptive ,i am able to view the file  because i creted the same mount point here.&lt;BR /&gt;&lt;BR /&gt;  is there any solution to make this proper.&lt;BR /&gt;  customer want /sap/tmp as a shared filesystem(in cluser) and /sap/tmp/run as a local file system&lt;BR /&gt;&lt;BR /&gt; please help me</description>
    <pubDate>Tue, 24 Feb 2009 12:27:46 GMT</pubDate>
    <dc:creator>joseph51</dc:creator>
    <dc:date>2009-02-24T12:27:46Z</dc:date>
    <item>
      <title>create mount point in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365198#M346604</link>
      <description>hi&lt;BR /&gt;  I am configuring a MCSG with vxvm.the customer want /sap/tmp in storage disk &amp;amp; /sap/tmp/run in local disk.&lt;BR /&gt;i tried a lot but the package is not running. finally i caeated same mount point in local and in storage also.. now the package is running.but when the primary node is halted i am not able to view the file(i created one test file) in local mount poing.&lt;BR /&gt;  in adoptive ,i am able to view the file  because i creted the same mount point here.&lt;BR /&gt;&lt;BR /&gt;  is there any solution to make this proper.&lt;BR /&gt;  customer want /sap/tmp as a shared filesystem(in cluser) and /sap/tmp/run as a local file system&lt;BR /&gt;&lt;BR /&gt; please help me</description>
      <pubDate>Tue, 24 Feb 2009 12:27:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365198#M346604</guid>
      <dc:creator>joseph51</dc:creator>
      <dc:date>2009-02-24T12:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: create mount point in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365199#M346605</link>
      <description>"That dog won't hunt" as A Clay used to say...&lt;BR /&gt;&lt;BR /&gt;You can't have a local filesystem nested in a clustered filesystem.&lt;BR /&gt;&lt;BR /&gt;Use a symbolic link instead . Make your local filesystem something like /local/run then create a link nin your clustered filesystem thusly:&lt;BR /&gt;&lt;BR /&gt;ln -s /local/run /sap/tmp/run&lt;BR /&gt;&lt;BR /&gt;Incidentally are you using Serviceguard Extension for SAP? This takes care of all SAP clustering issues:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hp.com/go/sgesap" target="_blank"&gt;http://www.hp.com/go/sgesap&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Tue, 24 Feb 2009 15:13:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365199#M346605</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2009-02-24T15:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: create mount point in cluster</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365200#M346606</link>
      <description>Your problem is that you must unmount the local /sap/tmp/run in the package configuration before unmounting the shared /sap/tmp, or the umount operation fails. If the umount fails, the VG cannot be deactivated and the package failover cannot happen. The order of the mount and umount operations is important.&lt;BR /&gt;&lt;BR /&gt;There are many ways to fix this.&lt;BR /&gt;&lt;BR /&gt;I would recommend using symbolic links.&lt;BR /&gt;&lt;BR /&gt;First, mount the disk that would be the local /sap/tmp/run to some other location, for example /var/saprun. Do this on all nodes of the cluster. You can choose any path for this mountpoint, but the path must be the same in all nodes of the cluster.&lt;BR /&gt;Do not include /var/saprun to the package configuration at all; make it a normal local filesystem, and add it to /etc/fstab as normal. &lt;BR /&gt;&lt;BR /&gt;Halt the package. As the package halt unmounts the shared disk, /sap/tmp will now be an empty directory.&lt;BR /&gt;&lt;BR /&gt;Create a symbolic link pointing from /sap/tmp/run to /var/saprun on all nodes of the cluster:&lt;BR /&gt;&lt;BR /&gt;ln -s /var/saprun /sap/tmp/run&lt;BR /&gt;&lt;BR /&gt;Now mount the package disks (e.g. by disabling the software startup scripts and starting the package). &lt;BR /&gt;As the shared disk is mounted over the existing /sap/tmp, it will hide the symbolic link from view. Now you'll have to make one more symbolic link on the shared disk:&lt;BR /&gt;&lt;BR /&gt;ln -s /var/saprun /sap/tmp/run&lt;BR /&gt;&lt;BR /&gt;This creates another symbolic link which is exactly the same as the link hidden by the shared disk.&lt;BR /&gt;&lt;BR /&gt;Now, when the package is running, the local disk /var/saprun is accessible as /sap/tmp/run through the symbolic link included in the package... but because it is a symbolic link, it does not prevent the package from failing over. When the package fails over to another node, another symbolic link is uncovered and /var/saprun is still accessible locally as /sap/tmp/run.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Tue, 24 Feb 2009 15:33:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-mount-point-in-cluster/m-p/4365200#M346606</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-02-24T15:33:45Z</dc:date>
    </item>
  </channel>
</rss>

