- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- problem with 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
Discussions
Discussions
Discussions
Forums
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
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
тАО12-16-2005 04:01 AM
тАО12-16-2005 04:01 AM
I am facing one problem.
there are two device - hp server & snap drive.
we had mounted a directory of snap drive to hp server's directory.
when i give bdf:
10.10.1.19:/bunty /apps/oracle/data
but now we changed the IP of snap drive i.e.10.10.1.20
i am not able to mount that drive.
please suggest
i have updated /etc/fstab file with new IP address then i give:
# mount -a
NFS getattr failed for server 10.10.1.19: RPC: Timed out
it is still showing the old ip address.
Please suggest what to do
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 04:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 04:15 AM
тАО12-16-2005 04:15 AM
Re: problem with NFS mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 04:16 AM
тАО12-16-2005 04:16 AM
Re: problem with NFS mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 04:17 AM
тАО12-16-2005 04:17 AM
Re: problem with NFS mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 04:19 AM
тАО12-16-2005 04:19 AM
Re: problem with NFS mount
NFS Mounting a remote filesystem on a local disk using the default TCP
mounts from HP-UX 11.11 NFS client gives the following error:
NFS getatter failed for server {hostname} : RPC(Unknown failure)
The mounts fail.
RESOLUTION
The error indicates a problem with the TCP port for NFS between the
NFS client and the NFS server.
Use the following diagnostic commands to determine if a process is
using the port that is needed for the NFS mount over TCP:
1. Use the ping command against the NFS Server name or IP address.
If it does not respond, network connectivity is the reason for the
failure.
2. Use rpcinfo -t server program command
# rpcinfo -t nfs_server 100005 ( 100005 is the program for rpc.mountd )
rogram 100005 version 1 ready and waiting
rpcinfo: RPC: Program/version mismatch; low version = 1, high version = 3
program 100005 version 2 is not available
program 100005 version 3 ready and waiting
# rpcinfo -t nfs_server 100003 ( 100003 is the program number for nfs )
program 100003 version 2 ready and waiting
program 100003 version 3 ready and waiting
If this generates an error, then there is likely a problem on
the NFS Server side, or setup. Consult the NFS debugging
document NETUXKBRC00006283 for tips.
3. Use netstat -an|grep 2049|grep xxx.yyy
where xxx.yyy=last few digits of the IP address of the NFS Server.
If you see a TCP socket from the client to the NFS Server being
stuck in a "CLOSE_WAIT" or "FIN_WAIT" status, then that indicates
the TCP socket being used for NFS communciations to that NFS Server
is hung. Unfortunately,the present design of HP-UX 11.11 NFS Client
does not select another socket for the same NFS server IP address.
Example:
hp-clnt #netstat -an|grep 2049 | grep 192.168.1.1
tcp 0 0 192.168.100.100.547 192.168.1.1.2049 CLOSE_WAIT
The following workarounds can be tried:
1. Try using another IP address from the NFS Server, if available, in the
mount command, in place of the server name. For example:
mount -osoft 192.168.200.1:/export/mnt /mnt
2. Try specifying UDP mounts until the system can be rebooted. To do this
add the proto=udp to the mount option string. For example:
mount -osoft,proto=udp server:/export/mnt /mnt
Where "server" is the name of the NFS Server.
3. Reboot to clear the port, and go back to using TCP mounts.
--------------------------------------------------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 04:45 AM
тАО12-16-2005 04:45 AM
Re: problem with NFS mount
nfs umount: inform_server: 10.10.1.19:/bunty server not responding: RPC: Rpcbind failure - RPC: Timed out
this is the error now
i am tring to unmount then mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 05:19 AM
тАО12-16-2005 05:19 AM
Re: problem with NFS mount
You could try stop/start NFS on the client server:
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.client start
If it still doesn't unmount - then I'm pretty sure you will have to reboot client server...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 05:32 AM
тАО12-16-2005 05:32 AM
Re: problem with NFS mount
Can you tell me what OS the NFS client system is running? If it is HP-UX 11i v2 (i.e. 11.23) you can use the "forcible" unmount command to eliminate this filesystem:
# umount -f
That will remove the old mount point from the list of mounted filesystems without requiring a reboot.
One other thing you could try would be to add a virtual IP address on the NFS server. I don't know if this is possible on a "snap" drive, but if you could temporarily add back the 10.10.1.19 address as a secondary virtual addresss (in HP-UX this would be like lan0:1) and get that server to respond to 10.10.1.19 again then you may be able to unmount the filesystem successfully and then remove the virtual IP address.
Again, I don't know if adding another IP to the server is a possibility, but if you're running 11.23 on the client the forcible unmount is a definite possibility.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 06:32 AM
тАО12-16-2005 06:32 AM
Re: problem with NFS mount
http://docs.hp.com/en/5991-1811/ch08s01.html
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-16-2005 07:33 AM - last edited on тАО06-18-2021 02:47 AM by Ramya_Heera
тАО12-16-2005 07:33 AM - last edited on тАО06-18-2021 02:47 AM by Ramya_Heera
Re: problem with NFS mount
Geoff,
Happy to help spread the word about new NFS features.
I've written a technical paper on techniques you can use to forcibly unmount NFS filesystems on clients running operating systems that *don't* support the -f umount option. The link to that paper is:
http://docs.hp.com/en/3929/ForciblyUnmountingNFSFilesystems.pdf
Might be interesting reading for folks who haven't yet updated to 11i v2.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
