Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 10:55 PM
10-20-2005 10:55 PM
NFS
I must export fs by NFS /opt/dir1/fich1
but in /etc/exports already is exported /opt/dir1.
Is possible a /etc/exports with this:
/opt/dir1
/opt/dir1/fich1
How can i do it??
Thanks and regards.-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 10:58 PM
10-20-2005 10:58 PM
Re: NFS
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 10:59 PM
10-20-2005 10:59 PM
Re: NFS
You could export /opt/dir1 to include the host you want to mount on and only mount /opt/dir1/fich1.
Or unexport /opt/dir1 (exportfs -uv /opt/dir1) and then export /opt/dir1/fich1. Of course any hosts that had /opt/dir1 mounted would then lose access.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:06 PM
10-20-2005 11:06 PM
Re: NFS
man exportfs says,
You cannot export a directory that resides within the same file system
and is either a parent or sub-directory of a directory that is
currently exported. For example, /usr and /usr/local cannot both be
exported if they reside in the same disk partition.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:11 PM
10-20-2005 11:11 PM
Re: NFS
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:25 PM
10-20-2005 11:25 PM
Re: NFS
Could i then mount /opt/dir1/fich1 in server node and mount it in server client without problems?
Thanks and sorry because my questions..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:30 PM
10-20-2005 11:30 PM
Re: NFS
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2005 11:31 PM
10-20-2005 11:31 PM
Re: NFS
Example:
# exportfs -iv /opt/dir1
will not consider /etc/exports file.
# mkdir /tmp/trydir
# mount /opt/dir1/fich1 /tmp/trydir
# ls -l /tmp/trydir /opt/dir1/fich1
will be same.
### Revert procedure ####
# umount /tmp/trydir
# rm -rf /tmp/trydir
(will revert to old stage ;) )
########################
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 12:13 AM
10-21-2005 12:13 AM
Re: NFS
I had do it and i have a problem:
I make a fs in node1 /opt/dir1/fich1
but when i try mount it in node2 i cant do it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 12:19 AM
10-21-2005 12:19 AM
Re: NFS
2. log in to node 2 and type:
cd /vol//fich1
where is the result of test 1.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 12:35 AM
10-21-2005 12:35 AM
Re: NFS
Hi,
I do it:
1- exportfs -iv /opt/dir1/fich1
# mkdir /tmp/trydir
# mount /opt/dir1/fich1 /tmp/trydir
now i can mount it thanks.
I mistake another time. Thanks to all people.
Regards