<?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: Rexporting NFS mount in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250807#M175353</link>
    <description>There is no need to reexport it. Simply create a mountpoint directory on Server C&lt;BR /&gt;e.g. mkdir -p /sys/disk1&lt;BR /&gt;&lt;BR /&gt;and then mount -F ServerA:/sys /sys/disk1&lt;BR /&gt;</description>
    <pubDate>Fri, 16 Apr 2004 14:05:14 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2004-04-16T14:05:14Z</dc:date>
    <item>
      <title>Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250806#M175352</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I am planning to export /sys file sytem on Server A. Server B will nfs mount that file system as /disk.&lt;BR /&gt;&lt;BR /&gt;Is it possible for me to reexport /disk?&lt;BR /&gt;so that server C can nfs mount it as /sys/disk1&lt;BR /&gt;&lt;BR /&gt;any answers highly appreciated!!!</description>
      <pubDate>Fri, 16 Apr 2004 13:57:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250806#M175352</guid>
      <dc:creator>Ramesh_27</dc:creator>
      <dc:date>2004-04-16T13:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250807#M175353</link>
      <description>There is no need to reexport it. Simply create a mountpoint directory on Server C&lt;BR /&gt;e.g. mkdir -p /sys/disk1&lt;BR /&gt;&lt;BR /&gt;and then mount -F ServerA:/sys /sys/disk1&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Apr 2004 14:05:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250807#M175353</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-04-16T14:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250808#M175354</link>
      <description>vi /etc/exports&lt;BR /&gt;&lt;BR /&gt;add the filesystem and any access restrictions&lt;BR /&gt;&lt;BR /&gt;exportfs -av&lt;BR /&gt;&lt;BR /&gt;You'll get good diagnostics in case anything is misconfigured.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 16 Apr 2004 14:05:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250808#M175354</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-04-16T14:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250809#M175355</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;I misstated my question. &lt;BR /&gt;&lt;BR /&gt;Can server B rexport its nfs mounted filesystems so that ican mount that file system from Server C.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;ramesh</description>
      <pubDate>Fri, 16 Apr 2004 14:38:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250809#M175355</guid>
      <dc:creator>Ramesh_27</dc:creator>
      <dc:date>2004-04-16T14:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250810#M175356</link>
      <description>In depends upon the flavor of UNIX but typically you get an error something like "Too many levels of remote in path". This is not something that I would ever depend upon working and moreover it adds more overhead to an already expensive operation. It makes much more sense to avoid the middle server even if it is supported.&lt;BR /&gt;This is the kind of task the automounter was madde to handle.&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Apr 2004 14:52:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250810#M175356</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-04-16T14:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250811#M175357</link>
      <description>I would recommend not to use -a option and use -i it will ignore options from /etc/exports file.&lt;BR /&gt;On serverB add the entry into exports file as mentioned by SEP and do&lt;BR /&gt;#exportfs -i -o access=serverC /sys  &lt;BR /&gt;ON serverC&lt;BR /&gt;#mkdir /disk1&lt;BR /&gt;#mount serverC:/sys  /disk1&lt;BR /&gt;&lt;BR /&gt;DO man on exportfs for more details.</description>
      <pubDate>Fri, 16 Apr 2004 14:55:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250811#M175357</guid>
      <dc:creator>SS_6</dc:creator>
      <dc:date>2004-04-16T14:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250812#M175358</link>
      <description>sorry last line should be&lt;BR /&gt;#mount serverB:/sys /disk1</description>
      <pubDate>Fri, 16 Apr 2004 14:57:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250812#M175358</guid>
      <dc:creator>SS_6</dc:creator>
      <dc:date>2004-04-16T14:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250813#M175359</link>
      <description>hello ramesh,&lt;BR /&gt;&lt;BR /&gt;      I am stumped by the reply of SS that server C could mount from server B's /disk1 which is the exported fs of server A. It was mentioned in one of HP doc that you can't re-export the nfs mounted file system. Kudos to SS if it were otherwise as he suggested and if working.&lt;BR /&gt;&lt;BR /&gt;      But,I strongly advocate against the usage of such an option....on the contrary I agree with clay's statement more than SS because,if u go ahead with SS option then your server C depends on both Server B AND server A.It is higly recommended not to do this.Whereas if u could nfsmount on server C from server A directly then atleast u are safer because it depends only on server A.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Senthil&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;P.S : "Certain repremansion is blessing in disguise".please listen to clay stevenson in this regard&lt;BR /&gt;</description>
      <pubDate>Sat, 17 Apr 2004 01:24:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250813#M175359</guid>
      <dc:creator>Senthil Kumar .A_1</dc:creator>
      <dc:date>2004-04-17T01:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250814#M175360</link>
      <description>hello,&lt;BR /&gt;&lt;BR /&gt;you cannot re-export the nfs mount.&lt;BR /&gt;modify /etc/exports on NFS server suitably to&lt;BR /&gt;give access to ServerC.&lt;BR /&gt;eg. /sys access:ServerB,ServerC&lt;BR /&gt;and then run #exportfs command to update /etc/xtab.&lt;BR /&gt;on the client side, mount the exported filesystem.&lt;BR /&gt;</description>
      <pubDate>Sat, 17 Apr 2004 01:59:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250814#M175360</guid>
      <dc:creator>venugopalakrishna.y.r</dc:creator>
      <dc:date>2004-04-17T01:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250815#M175361</link>
      <description>okay,I misuderstood the question little bit because of two posting of questions and I am also not in favour of reexporting nfs file system and especially when it is easily possible to export the file system from the (one)same serverA to serverC.I also really don't see any logic to rexport any file system from another server. Thanks guys for pointing it out. Have a nice weekend.</description>
      <pubDate>Sat, 17 Apr 2004 10:21:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250815#M175361</guid>
      <dc:creator>SS_6</dc:creator>
      <dc:date>2004-04-17T10:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Rexporting NFS mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250816#M175362</link>
      <description>If you give a closer look to my solution. I have suggested to reexport /sys and NOT /disk1 which is only possible from serverA.</description>
      <pubDate>Sat, 17 Apr 2004 10:57:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rexporting-nfs-mount/m-p/3250816#M175362</guid>
      <dc:creator>SS_6</dc:creator>
      <dc:date>2004-04-17T10:57:06Z</dc:date>
    </item>
  </channel>
</rss>

