<?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: Mounting a directory in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175780#M63799</link>
    <description>1. check the ip address.&lt;BR /&gt;2. From server, run `showmount -e` to see the available shares. If shows nothing - the share isn't there.&lt;BR /&gt;3. From client run `showmount -e 10.0.0.3`.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;First check connectivity between these 2 servers (ping) and make sure the ports aren't blocked with firewall.&lt;BR /&gt;&lt;BR /&gt;ASSIGN POINTS:  7 assignments out of 85?.</description>
    <pubDate>Wed, 09 Apr 2008 08:06:51 GMT</pubDate>
    <dc:creator>Alexander Chuzhoy</dc:creator>
    <dc:date>2008-04-09T08:06:51Z</dc:date>
    <item>
      <title>Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175774#M63793</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I want to know how can i make  directory mount by other users. for ex:&lt;BR /&gt;i have /home/exper/shared in 11.0.0.3&lt;BR /&gt;&lt;BR /&gt;and i want a user on another machine mount exper@11.0.0.3:/home/exper/shared /shared on the new machime that is 11.0.0.5&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Tue, 08 Apr 2008 09:15:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175774#M63793</guid>
      <dc:creator>Karthik_sg</dc:creator>
      <dc:date>2008-04-08T09:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175775#M63794</link>
      <description>Also i have started the nfs server on 11.0.0.3.&lt;BR /&gt;So what is the next step to be followed.&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Apr 2008 10:44:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175775#M63794</guid>
      <dc:creator>Karthik_sg</dc:creator>
      <dc:date>2008-04-08T10:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175776#M63795</link>
      <description>use mount command to do it or make a manual entry in fstab for permanent mounting every time system starts.&lt;BR /&gt;"man mount"&lt;BR /&gt;Which version of Linux u r using?</description>
      <pubDate>Tue, 08 Apr 2008 11:37:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175776#M63795</guid>
      <dc:creator>Change_happens</dc:creator>
      <dc:date>2008-04-08T11:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175777#M63796</link>
      <description>I am using RHEL5 for server and RHEL4 for client,And i have added the entry in /etc/fstab and the entry is &lt;BR /&gt;LABEL=/home/exper     /home/exper           ext3    defaults        1 1&lt;BR /&gt;and i have restarted nfs on both.Not sure wht is the problem.&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Apr 2008 13:42:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175777#M63796</guid>
      <dc:creator>Karthik_sg</dc:creator>
      <dc:date>2008-04-08T13:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175778#M63797</link>
      <description>make sure you have an etry as the following in  /etc/exports file:&lt;BR /&gt;/home/exper/shared 11.0.0.5/32(rw) &lt;BR /&gt;&lt;BR /&gt;rw here means read+write - use ro for read only.&lt;BR /&gt;then restart the nfs service:&lt;BR /&gt;service nfs restart&lt;BR /&gt;then make sure the firewall (iptables) allows the traffic.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;from 11.0.0.5 issue the command:&lt;BR /&gt;showmount -e &lt;BR /&gt;the output should list the available shares -f you get it, then basically you should be able to mount the directory.&lt;BR /&gt;&lt;BR /&gt;Very important thing is to assign points.</description>
      <pubDate>Tue, 08 Apr 2008 14:02:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175778#M63797</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2008-04-08T14:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175779#M63798</link>
      <description>In the exports file on server i have included the directory as /home/exper/shared *(rw,no_root_squash)&lt;BR /&gt;and i have restarted the nfs and nfslock service now and still i get the following error message mount to NFS server '11.0.0.0.3' failed: server is down&lt;BR /&gt;&lt;BR /&gt;I have even restarted the nfs and nfslock on the client machine not sure what to do about this.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Apr 2008 06:38:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175779#M63798</guid>
      <dc:creator>Karthik_sg</dc:creator>
      <dc:date>2008-04-09T06:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175780#M63799</link>
      <description>1. check the ip address.&lt;BR /&gt;2. From server, run `showmount -e` to see the available shares. If shows nothing - the share isn't there.&lt;BR /&gt;3. From client run `showmount -e 10.0.0.3`.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;First check connectivity between these 2 servers (ping) and make sure the ports aren't blocked with firewall.&lt;BR /&gt;&lt;BR /&gt;ASSIGN POINTS:  7 assignments out of 85?.</description>
      <pubDate>Wed, 09 Apr 2008 08:06:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175780#M63799</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2008-04-09T08:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175781#M63800</link>
      <description>when i do showmount -e on server it shows me the shared directory but i cannot do showmount -e 11.0.0.3 on client i get the following error showmount -e 11.0.0.3&lt;BR /&gt;bash: showmount: command not found&lt;BR /&gt;&lt;BR /&gt;And i can ping both the machines.Pls let me know how i shd go abt this&lt;BR /&gt;PS:I have assigned the points</description>
      <pubDate>Wed, 09 Apr 2008 10:09:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175781#M63800</guid>
      <dc:creator>Karthik_sg</dc:creator>
      <dc:date>2008-04-09T10:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175782#M63801</link>
      <description>try with the full path:&lt;BR /&gt;/usr/sbin/showmount -e &lt;IP_ADDR&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if not found - install the nfs-utils rpm.&lt;/IP_ADDR&gt;</description>
      <pubDate>Wed, 09 Apr 2008 10:20:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175782#M63801</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2008-04-09T10:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting a directory</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175783#M63802</link>
      <description>by default Red Hat turns on the firewall during install, try running /etc/init.d/iptabls stop and then see if the client can get access. If it works, then you need to either leave the firewall off or set it up to pass the proper ports for NFS&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Apr 2008 11:23:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-a-directory/m-p/4175783#M63802</guid>
      <dc:creator>Jimmy Vance</dc:creator>
      <dc:date>2008-04-09T11:23:10Z</dc:date>
    </item>
  </channel>
</rss>

