Sponsored Content
Operating Systems Solaris RPC: Rpcbind failure - RPC: Timed out Post 302510223 by thecobra151 on Saturday 2nd of April 2011 05:35:04 AM
Old 04-02-2011
RPC: Rpcbind failure - RPC: Timed out

while i trying to mount from NAS i have this messages

Code:
mount -F nfs -o rw 172.16.110.13:/tremabkup /tremabkup
nfs mount: 172.16.110.13: : RPC: Rpcbind failure - RPC: Timed out
nfs mount: retrying: /tremabkup
nfs mount: 172.16.110.13: : RPC: Rpcbind failure - RPC: Timed out
nfs mount: 172.16.110.13: : RPC: Rpcbind failure - RPC: Timed out
nfs mount: 172.16.110.13: : RPC: Rpcbind failure - RPC: Timed out
nfs mount: 172.16.110.13: : RPC: Rpcbind failure - RPC: Timed out

 

10 More Discussions You Might Find Interesting

1. Programming

Rpc

Hello, I would like to do a program (in C) on which I would have to call 3 or more executables using execl command. But if the executables are situated on another machine say Y and I do a programe on the machine X, is it possible to invoke those executables (binaries) from the other machine... (1 Reply)
Discussion started by: driki
1 Replies

2. UNIX for Dummies Questions & Answers

RPC service

Hi All, How can I add RPC service in SCO 5.0.7. I did not find in the sco cd please help me Alice (0 Replies)
Discussion started by: alisevA3
0 Replies

3. Programming

RPC Programming

I am trying to create a server and client pair to run using RPC. I have generated the client/server stubs, the XDR file, and the header file using rpcgen. The problem is that when I try to compile the code, I always get undefined symbols: xdr_vector, xdr_pointer, clnt_create, xdr_char,... (1 Reply)
Discussion started by: emeralddream
1 Replies

4. Solaris

RPC failure on yp operation

Hi....I just changed the hostnname on some of my servers.., changing the NIS master hostname first... I was able to bring the NIS master back up but when I tried to si - to a different group of users, I got the following error message: RPC failure on yp operation Anyone knows what else I... (1 Reply)
Discussion started by: Remi
1 Replies

5. Solaris

rpcbind failure

Hello experts.. What is the meaning of " RPC : rpcbind failure" in NFS ? What would be the reason for that? How can i resolve that issue? give me all aspects (all views).. Thanks in advance... (1 Reply)
Discussion started by: younus_syed
1 Replies

6. Solaris

Error : "RPC: Rpcbind failure - RPC: Timed out"

Hello I am having an issue with a server SUN FIRE T2000 (Solaris 10). First of all the server didn't boot normaly so I did a full restoration of the file systems. Now the server boot, most of the services are available (not all the services), but I keep on seeing RPC: Rpcbind failure -... (4 Replies)
Discussion started by: feg
4 Replies

7. Solaris

RPC: Rpcbind failure - RPC: Timed out error (solaris)

C: Rpcbind failure - RPC: Timed out error (solaris) hello an nfs server on my sun fire v440 is not responding , i get the error bellow and lots of my networking services are not reponding, please helppppp its an emergency RPC: Rpcbind failure - RPC: Timed out i also get NFS server... (2 Replies)
Discussion started by: feg
2 Replies

8. Solaris

RPC Issue

Hi Folks, I am facing a problem using RPC based connection between two different OS ( RHEL 5 and Windows XP). We have a Camelot ( Cad Navigation Equipment - Running is RHEL5) which is connected to an FEI equipment ( Running in Windows XP).The connection uses an RPC based Driver for... (0 Replies)
Discussion started by: asheshrocky
0 Replies

9. IP Networking

RPC Issue

Hi Folks, I am facing a problem using RPC based connection between two different OS ( RHEL 5 and Windows XP). We have a Camelot ( Cad Navigation Equipment - Running is RHEL5) which is connected to an FEI equipment ( Running in Windows XP).The connection uses an RPC based Driver for... (0 Replies)
Discussion started by: asheshrocky
0 Replies

10. Solaris

nfs mount: RPC: Rpcbind failure - RPC: Timed out

Fails to mount the server (10.125.224.22) during installation of a software on client, throwing the below error: nfs mount: 10.125.224.22: : RPC: Rpcbind failure - RPC: Timed out nfs mount: retrying: /cdrom This happened after complete shutdown of the lab. The server came up fine but most... (1 Reply)
Discussion started by: frintocf
1 Replies
rpc_xdr(3)						     Library Functions Manual							rpc_xdr(3)

NAME
rpc_xdr, xdr_accepted_reply, xdr_authunix_parms, xdr_callhdr, xdr_callmsg, xdr_opaque_auth, xdr_rejected_reply, xdr_replymsg - XDR library routines for ONC remote procedure calls SYNOPSIS
#include <rpc/xdr.h> xdr_accepted_reply( XDR *xdrs, struct accepted_reply *ar); xdr_authunix_parms( XDR *xdrs, struct authunix_parms *aupp); void xdr_callhdr( XDR *xdrs, struct rpc_msg *chdr); xdr_callmsg( XDR *xdrs, struct rpc_msg *cmsg); xdr_opaque_auth( XDR *xdrs, struct opaque_auth *ap); xdr_rejected_reply( XDR *xdrs, struct rejected_reply *rr); xdr_replymsg( XDR *xdrs, struct rpc_msg *rmsg); DESCRIPTION
These routines allow C programs to make procedure calls on other machines across the network. First, the client calls a procedure to send a data packet to the server. Upon receipt of the packet, the server calls a dispatch routine to perform the requested service, and then sends back a reply. Finally, the procedure call returns to the client. Unless otherwise indicated, the routines described in this reference page are thread safe (that is, they can be used safely in a multi- threaded environment). Routines that are not thread safe are flagged as such. Encodes RPC reply messages. This routine is useful for users who wish to generate RPC-style messages without using the RPC package. Describes UNIX credentials. This routine is useful for users who wish to generate these credentials without using the RPC authentication package. Describes RPC call header messages. This routine is useful for users who wish to generate RPC-style messages without using the RPC package. Describes RPC call messages. This routine is use- ful for users who wish to generate RPC-style messages without using the RPC package. Describes RPC authentication information messages. This routine is useful for users who wish to generate RPC-style messages without using the RPC package. Describes RPC reply messages. This routine is useful for users who want to generate RPC-style messages without using the RPC package. Describes RPC reply messages. This routine is useful for users who want to generate RPC-style messages without using the RPC package. RELATED INFORMATION
rpc_clnt(3), rpc_misc(3), rpc_svc(3), xdr(3) Remote Procedure Calls: Protocol Specifications - RFC 1050 delim off rpc_xdr(3)
All times are GMT -4. The time now is 07:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy