- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Read-only NFS mount
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
02-04-2005 05:30 PM
02-04-2005 05:30 PM
Read-only NFS mount
I have configured my one of my tru64 servers as nfs server and other as nfs client. I am unable to open that network directory as read-write directory from client. However, I am able to see the contents of the network directory. Can you please let me know where I amdoing wrong?
PS: I used "sysman nfs" for configuring nfs in both servers.
Regards,
Vikas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2005 10:27 PM
02-04-2005 10:27 PM
Re: Read-only NFS mount
Can you please post your server's /etc/exports and the result of "grep NFS /etc/rc.config* " ?
_- Johan.
_JB_
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2005 05:52 AM
02-05-2005 05:52 AM
Re: Read-only NFS mount
Hi,
I am pasting output from NFS Server/client as asked.
The problem is that I am able to see NFS resource as READ-ONLY whereas I want it to be READ-WRITE.
Please help.
-Vikas
Contents of NFS Server's /etc/exports file:
===========================================
/backup/SYS1002_BCK/backup
Mount command output from NFS Client (sys1002)
=====================================
sys1001:/backup/SYS1002_BCK/backup on /SYS1001_SHARED type nfs (v3, rw, udp, hard, intr)
NFS SERVER CONFIGURATION
===========================
sys1001:/ # grep NFS /etc/rc.config*
/etc/rc.config.common:NFS_CONFIGURED="1"
/etc/rc.config.common:export NFS_CONFIGURED
/etc/rc.config.common:NFSSERVING="1"
/etc/rc.config.common:export NFSSERVING
/etc/rc.config.common:NFSLOCKING="1"
/etc/rc.config.common:export NFSLOCKING
/etc/rc.config.common:PCNFSD="0"
/etc/rc.config.common:export PCNFSD
NFS CLIENT CONFIGURATION
==============================
sys1002:/ # grep NFS /etc/rc.config*
/etc/rc.config.common:NFS_CONFIGURED="1"
/etc/rc.config.common:export NFS_CONFIGURED
/etc/rc.config.common:NUM_NFSIOD="7"
/etc/rc.config.common:export NUM_NFSIOD
/etc/rc.config.common:NFSLOCKING="1"
/etc/rc.config.common:export NFSLOCKING
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2005 09:17 AM
02-05-2005 09:17 AM
Re: Read-only NFS mount
Suggestions:
1. Make sure the server is explicitly exporting the filesystem read-write (edit the exports file and re-export it, then unmount/re-mount on client).
2. Make sure that UNIX permissions match. Newer NFS servers disallow root to have "see-all" privileges on a remotely mounted filesystem unless the export/mount options say to do it this way (see the option "root"). That's one issue. Another, if you're having non-root problems, is to see that the owner and owner's UID are the same on both systems (/etc/passwd, NIS, etc).
HTH,
Mic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2005 10:21 AM
02-06-2005 10:21 AM
Re: Read-only NFS mount
I guess you were doing this as root, since you were running "sysman" as root.
If you do not specify the option "-root=0", in the line of /etc/exports, root on the client is reduced to "nobody" (UID=2), and thus will moost probably not be able to write from the client. (depending on the protection against "other" users )
__ Johan.
_JB_