<?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 NFS Configuration in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785401#M391307</link>
    <description>Dear all,&lt;BR /&gt;Please explain how to configure the nfs server and client in hpux 11iv3.</description>
    <pubDate>Mon, 09 May 2011 02:10:20 GMT</pubDate>
    <dc:creator>Abubakkar</dc:creator>
    <dc:date>2011-05-09T02:10:20Z</dc:date>
    <item>
      <title>NFS Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785401#M391307</link>
      <description>Dear all,&lt;BR /&gt;Please explain how to configure the nfs server and client in hpux 11iv3.</description>
      <pubDate>Mon, 09 May 2011 02:10:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785401#M391307</guid>
      <dc:creator>Abubakkar</dc:creator>
      <dc:date>2011-05-09T02:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785402#M391308</link>
      <description>Have you looked at share_nfs(1M) and mount_nfs(1M)?&lt;BR /&gt;You may want to use SMH to configure it for you.</description>
      <pubDate>Mon, 09 May 2011 04:24:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785402#M391308</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-05-09T04:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785403#M391309</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Read on below URL.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docstore.mik.ua/manuals/hp-ux/en/5992-4607/ch05s01.html" target="_blank"&gt;http://docstore.mik.ua/manuals/hp-ux/en/5992-4607/ch05s01.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...</description>
      <pubDate>Mon, 09 May 2011 04:53:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785403#M391309</guid>
      <dc:creator>P Arumugavel</dc:creator>
      <dc:date>2011-05-09T04:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785404#M391310</link>
      <description>For NFS Server you need to edit the File /etc/rc.config.d/nfsconf and make entries look like below&lt;BR /&gt;NFS_CORE=1&lt;BR /&gt;NFS_SERVER=1&lt;BR /&gt;START_MOUNTD=1&lt;BR /&gt;To start NFS server daemons :&lt;BR /&gt;# /etc/init.d/nfs.server start&lt;BR /&gt;&lt;BR /&gt;Configuration Files :&lt;BR /&gt;/etc/exports - Contains a list of exportable file systems. This file is available in upto HP-UX 11i v2&lt;BR /&gt;/etc/dfs/dfstab - Contains a list of sharable file systems. This file is available from HP-UX 11i v3 &lt;BR /&gt;&lt;BR /&gt;To export or share a file system :&lt;BR /&gt;# exportfs /data &amp;lt;--- Upto HP-UX 11i v2&lt;BR /&gt;# share /data &amp;lt;--- From HP-UX 11i v3&lt;BR /&gt;&lt;BR /&gt;To unexport or unshaer a file system :&lt;BR /&gt;# exportfs -u /data &amp;lt;--- Upto HP-UX 11i v2&lt;BR /&gt;# unshare /data &amp;lt;--- From HP-UX 11i v3&lt;BR /&gt;&lt;BR /&gt;To export or share all the filesystems defined in /etc/exports or /etc/dfs/dfstab :&lt;BR /&gt;# exportfs -a &amp;lt;--- Upto HP-UX 11i v2&lt;BR /&gt;# shareall &amp;lt;--- From HP-UX 11i v3 &lt;BR /&gt;&lt;BR /&gt;On the client Side&lt;BR /&gt;&lt;BR /&gt;edit the file /etc/rc.config.d/nfsconf and make the entry look like below&lt;BR /&gt;NFS_CLIENT=1&lt;BR /&gt;&lt;BR /&gt;start the service &lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/nfs.client start&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 May 2011 06:43:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785404#M391310</guid>
      <dc:creator>suvy12</dc:creator>
      <dc:date>2011-05-09T06:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785405#M391311</link>
      <description>make sure that you also look at the dfstab file and restrict the share to only those servers that you want to have access.&lt;BR /&gt;&lt;BR /&gt;Doing a man on "share" and then looking at the dfstab file will help explain.</description>
      <pubDate>Tue, 10 May 2011 14:54:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785405#M391311</guid>
      <dc:creator>Mike Miller_8</dc:creator>
      <dc:date>2011-05-10T14:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785406#M391312</link>
      <description>Hi AbuBakkar,&lt;BR /&gt;&lt;BR /&gt;Suvvvy..&lt;BR /&gt;&amp;gt; # /etc/init.d/nfs.server start&lt;BR /&gt;&lt;BR /&gt;Well I guess there is a typo there.&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/nfs.server start is the script...&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;Ismail Azad</description>
      <pubDate>Wed, 11 May 2011 16:42:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-configuration/m-p/4785406#M391312</guid>
      <dc:creator>Ismail Azad</dc:creator>
      <dc:date>2011-05-11T16:42:56Z</dc:date>
    </item>
  </channel>
</rss>

