<?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: NFS Mounting on Redhat 4.0 AS in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697192#M21111</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Go through the following web link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.troubleshooters.com/linux/nfs.htm" target="_blank"&gt;http://www.troubleshooters.com/linux/nfs.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;Chandan</description>
    <pubDate>Thu, 22 Dec 2005 23:35:17 GMT</pubDate>
    <dc:creator>Chandan Kumar_1</dc:creator>
    <dc:date>2005-12-22T23:35:17Z</dc:date>
    <item>
      <title>NFS Mounting on Redhat 4.0 AS</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697191#M21110</link>
      <description>Gd Day Forum,&lt;BR /&gt;&lt;BR /&gt;How do I enable nfs mounting services on my redhat 4.0 AS for both 2 Linux boxes?&lt;BR /&gt;&lt;BR /&gt;Thanks/cliff</description>
      <pubDate>Thu, 22 Dec 2005 22:44:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697191#M21110</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2005-12-22T22:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mounting on Redhat 4.0 AS</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697192#M21111</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Go through the following web link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.troubleshooters.com/linux/nfs.htm" target="_blank"&gt;http://www.troubleshooters.com/linux/nfs.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;Chandan</description>
      <pubDate>Thu, 22 Dec 2005 23:35:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697192#M21111</guid>
      <dc:creator>Chandan Kumar_1</dc:creator>
      <dc:date>2005-12-22T23:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mounting on Redhat 4.0 AS</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697193#M21112</link>
      <description>You should run portmap, nfslock and nfsd on you server. configure /etc/export and mount the directory. for mounting automaticaly at the boot time you can add your NFS mount point in /etc/fstab.&lt;BR /&gt;&lt;BR /&gt;Alireza</description>
      <pubDate>Fri, 23 Dec 2005 04:05:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697193#M21112</guid>
      <dc:creator>Delrish</dc:creator>
      <dc:date>2005-12-23T04:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mounting on Redhat 4.0 AS</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697194#M21113</link>
      <description>On the server:&lt;BR /&gt;&lt;BR /&gt;chkconfig portmap on&lt;BR /&gt;chkconfig nfs on&lt;BR /&gt;&lt;BR /&gt;Edit /etc/exports, like this:&lt;BR /&gt;&lt;BR /&gt;/public    *(ro,async,root_squash)&lt;BR /&gt;&lt;BR /&gt;Start the service:&lt;BR /&gt;&lt;BR /&gt;service nfs start&lt;BR /&gt;&lt;BR /&gt;On the client:&lt;BR /&gt;&lt;BR /&gt;mount -t nfs server:/public /mount/point&lt;BR /&gt;&lt;BR /&gt;You MUST have a consistent UID/GID scheme on all your servers.&lt;BR /&gt;&lt;BR /&gt;NOTE: nfslock is not needed as the lock is already managed by the kernel on linux-to-linux nfs.</description>
      <pubDate>Fri, 23 Dec 2005 06:31:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697194#M21113</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-12-23T06:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mounting on Redhat 4.0 AS</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697195#M21114</link>
      <description>hi &lt;BR /&gt;&lt;BR /&gt;enable the portmap  and nfs service . so that it will start automatically .&lt;BR /&gt;&lt;BR /&gt;# chkconfig portmap on&lt;BR /&gt;# chkconfig nfs on&lt;BR /&gt;&lt;BR /&gt;Edit /etc/exports, &lt;BR /&gt;&lt;BR /&gt;add the exported file system like &lt;BR /&gt;&lt;BR /&gt;/home &lt;BR /&gt;&lt;BR /&gt;then &lt;BR /&gt;&lt;BR /&gt;service nfs start&lt;BR /&gt;&lt;BR /&gt;On the client side :&lt;BR /&gt;&lt;BR /&gt;showmount -e (server ip address) &lt;BR /&gt;&lt;BR /&gt;this is to check whether the filsystems exported properly.&lt;BR /&gt;&lt;BR /&gt;then try to mount the fs from client side &lt;BR /&gt;mount  server:/home  /mnt&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Dec 2005 04:33:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697195#M21114</guid>
      <dc:creator>Tvs</dc:creator>
      <dc:date>2005-12-27T04:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mounting on Redhat 4.0 AS</title>
      <link>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697196#M21115</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Do the following steps.&lt;BR /&gt;&lt;BR /&gt;#mkdir /dump&lt;BR /&gt;&lt;BR /&gt;#vi /etc/exports&lt;BR /&gt;/dump   &lt;CLIENT_NAME or="" ip="" address=""&gt;(rw,root_no_squash,async)&lt;BR /&gt;&lt;BR /&gt;save and come out..&lt;BR /&gt;&lt;BR /&gt;#service nfs restart&lt;BR /&gt;#vi /etc/fstab&lt;BR /&gt;&lt;BR /&gt;Go to client machine..&lt;BR /&gt;#vi /etc/fstab&lt;BR /&gt;&lt;BR /&gt;Made an entry in fstab file for automount after restart the machine..&lt;BR /&gt;&lt;BR /&gt;#mount /dump&lt;BR /&gt;#df -k&lt;BR /&gt;u should able to see the directory mounted..&lt;BR /&gt;&lt;BR /&gt;Hope this will resolve ur issue..&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;indrajit&lt;BR /&gt;&lt;BR /&gt;&lt;/CLIENT_NAME&gt;</description>
      <pubDate>Tue, 27 Dec 2005 13:34:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/nfs-mounting-on-redhat-4-0-as/m-p/3697196#M21115</guid>
      <dc:creator>Indrajit_1</dc:creator>
      <dc:date>2005-12-27T13:34:56Z</dc:date>
    </item>
  </channel>
</rss>

