- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS: RPC: Timed out
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
тАО10-16-2005 09:08 PM
тАО10-16-2005 09:08 PM
NFS: RPC: Timed out
HPUX v11i: I've a problem with a NFS server, all clients UX11i fail to mount (automount -soft) a FS the syslog reports:
vmunix: NFS getattr failed for server lochp33: RPC: Timed out
automountd[660]: Mount nfsbox:/FSaaa on /FAbbb errno 238: Connection timed out
The same FS system could be mounted without problems from any NFS client of UX10.20.
I suspect the problem is on the TCP port connection (UX10.20 uses udp):
rpcinfo -t nfsbox 100003
rpcinfo: RPC: Miscellaneous tli error - bad flags
program 100003 is not available
Any Idea on how to solve the problem without rebooting the server?
Thank you
Romano
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 09:14 PM
тАО10-16-2005 09:14 PM
Re: NFS: RPC: Timed out
# server
exportfs -iv /tmp
# client
mkdir /tmp/servertmp
mount -e server:/tmp /tmp/servertmp
Is it working?
Connection timed out means connection to server is response less. Is connectivity to server working fine with ping / telnet ?
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 09:22 PM
тАО10-16-2005 09:22 PM
Re: NFS: RPC: Timed out
1) Can you ping from your clients to server ?
2) Restart NFS server and try exporting, and mounting in Client.. That should help.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 09:23 PM
тАО10-16-2005 09:23 PM
Re: NFS: RPC: Timed out
Yes the box is working "fine" (ping, telnet...) the mount works!
That means that the timeout is given by automount?
In relation to this furum: http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=948706, i try this on different client:
netstat -an |grep 2049 | grep IP.nfsserver
On one I have that:
tcp 0 0 10.13.0.165.842 10.13.0.183.2049 FIN_WAIT_2
tcp 0 0 10.13.0.165.843 10.13.0.183.2049 FIN_WAIT_2
is there a pending connection? how to individuate?
thanks
romano
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 09:26 PM
тАО10-16-2005 09:26 PM
Re: NFS: RPC: Timed out
1. ping/nslookup on nfs server
2. Are clients seeing the exported nfs share??
showmount -e "nfs_server"
3. Is the nfs share exported with udp as protocol??-showmount -e and look at /etc/exports file.
If udp, on 11i clinets, you will have to mount explicitely with udp protocol
mount_nfs -o proto=udp nfs_server:/share /local+mount_pt
Also look at nfs versions. 10.20 mount only version2.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 09:35 PM
тАО10-16-2005 09:35 PM
Re: NFS: RPC: Timed out
answer to RAC:
1) Yes
2) Yes
3) No
Arunvijai: I prefer avoid restart the NFS server, anyway find out the process that caused the problem.
thanks
romano
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-16-2005 11:00 PM
тАО10-16-2005 11:00 PM
Re: NFS: RPC: Timed out
# showmount -e
hth.'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2005 02:12 AM
тАО10-17-2005 02:12 AM
Re: NFS: RPC: Timed out
thank to all
Romano