- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS export as ro
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
03-14-2006 10:07 AM
03-14-2006 10:07 AM
NFS export as ro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 10:10 AM
03-14-2006 10:10 AM
Re: NFS export as ro
/mydir rw=host1,host2,host3
This will allow host1,host2, and host3 read-write access but any other hosts not explicitly listed will be read-only.
Man exports for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 03:35 PM
03-14-2006 03:35 PM
Re: NFS export as ro
Try to mount from the node as,
# mkdir /tmp/testfs
# mount fileserver:/filesystem /tmp/testfs
will work.
PS: Both machines are needed to be reachable through network.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 03:53 PM
03-14-2006 03:53 PM
Re: NFS export as ro
Check the excel attachment to get a brief idea about the config files behaviour.
Regards,
Senthil Kumar .A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 04:39 PM
03-14-2006 04:39 PM
Re: NFS export as ro
Hi Bruce,
use the follwoing enrty in /etc/exports to make a readonly export,
/directory -ro
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 04:40 PM
03-14-2006 04:40 PM
Re: NFS export as ro
Hi Bruce,
use the follwoing enrty in /etc/exports to make a readonly export,
/directory -ro
optionally, you can give a selective read write access by adding
/directory -rw=hosta:hostb
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 04:42 PM
03-14-2006 04:42 PM
Re: NFS export as ro
dont forget to run,
#exportfs -av
after modifying the /etc/exports
Regards,
Siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2006 04:44 PM
03-14-2006 04:44 PM
Re: NFS export as ro
Are you asking Bruce to add two entry with ro and rw for one file system? If so it is not possible. Read exports man page.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2006 04:45 AM
03-15-2006 04:45 AM
Re: NFS export as ro
/dir -rw=node1:node2:node3,access=node4