- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problems with HP-UX 11 client mounting NFS filesys...
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
11-13-2003 12:10 PM
11-13-2003 12:10 PM
Problems with HP-UX 11 client mounting NFS filesystem
- error message: "permission denied"
- tried from sam and from commmand line: 'mount hostname:/original_path /target_path'
- /etc/exports file updated on NFS server
- NFS server accessible through rlogin
- NIS up and running
- all other network access working fine
- hostname/IP address of NFS server added in hosts file of local w/s
Driving me loopy!
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2003 12:22 PM
11-13-2003 12:22 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
Also verify /etc/resolv.conf on the work station and make sure it looks like the workstations. Use 'nslookup' from the server and the client with both hostnames and ip to make sure. Use the FQDN.
# nslookup server
# nslookup client
# nslookup client_ip
# nslookup server_ip
Use showmount -e and exportfs -a and exportfs -ua.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2003 02:11 PM
11-13-2003 02:11 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
1.The file system is not shared properly.
you can do a
#exportfs -a
or
re-start nfs services
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.server start
2.check for the permissions of the directory you have shared.
The permissions should be atleast 755.
Try also giving 777 and check mounting at the client
3.check whether you have shared the file system read only or you are nfs mounting a ro CD.Then use
-o ro option during the mount of the nfs file system on the client.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2003 02:32 PM
11-13-2003 02:32 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
Before doing that make sure nfs client services are started
/sbin/init.d/nfs.client start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2003 02:36 PM
11-13-2003 02:36 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
check the exports file for the access to this workstation
check the mount options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2003 03:31 PM
11-13-2003 03:31 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
#/sbin/init.d/nfs.client stop
#/sbin/init.d/nfs.client start
Pl check whether the access is limited to a few WS only
/path -access=ws1. In this case /path can be mounted only by Ws1.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 07:51 AM
11-14-2003 07:51 AM
Re: Problems with HP-UX 11 client mounting NFS filesystem
When I solve it ( it's not fixed yet) , I will post what worked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 07:58 AM
11-14-2003 07:58 AM
Re: Problems with HP-UX 11 client mounting NFS filesystem
If you don't have this as an entry in /etc/fstab then you need to tell the mount command the FS type:
mount -F nfs host:/path/to/dir /mnt_dir
Then if it's exported with options (ro?) those have to be added as well. And as stated if the export has restrictions - they must be honored.
Also check the perms on the dir being exported & that both hosts are resolvable by name & IP.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2003 12:15 PM
11-14-2003 12:15 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
The solution turned out to be
- Our in-house DNS server did not have the "reverse" DNS records for the problem client
- In a couple of places we were not using FQDN
Thanks to all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2003 12:25 AM
11-15-2003 12:25 AM
Re: Problems with HP-UX 11 client mounting NFS filesystem
Glad you resolved (pun intended) this & that I could help.
Yep - DNS is a necessary evil for a lot of things. If all the t's aren't crossed (fwd resolution) & i's dotted (reverse res) then lots of things don't seem to work correctly.
In this case NFS....
Cheers,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2003 09:41 PM
11-17-2003 09:41 PM
Re: Problems with HP-UX 11 client mounting NFS filesystem
I want to check first on server side
-->check local directory permission
-->check the exported directory permission
then client side
--> check the mounting option
what option u r using to mount from the server to local
Thanx