1827473 Members
1699 Online
109965 Solutions
New Discussion

Re: RPC information

 
Roberto Volsa
Frequent Advisor

RPC information

Hello,
where is it possible to retrieve information on RPC?
My Hpux application uses RPC and i read errors in log files; it would be really useful to use some manual/information repository in order to qualify those messages


Thanks
3 REPLIES 3
Michael Steele_2
Honored Contributor

Re: RPC information

rpcinfo -p host

This command is usually used with NFS. So host can be used from client as:

rpcinfo -p server

And you should see:

rpcbind, status, nfs, mountd, nlockmgr, llockmgr

rpcinfo -u hostname service

for example

rpcinfo -u hostname mountd

program 10000004 version 1 ready and waiting, etc.
Support Fatherhood - Stop Family Law
Alex Glennie
Honored Contributor

Re: RPC information

Best place to start imho = Notes on Programming with HP DCE
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B3193-90022/B3193-90022_top.html&con=/hpux/onlinedocs/B3193-90022/00/00/26-con.html&toc=/hpux/onlinedocs/B3193-90022/00/00/26-toc.html&searchterms=rpc&queryid=20030409-063448

& Programming with Threads on HP-UX, HP Product number (B2355-90060).

Also The multithreaded programming guide - Threadtime by scott j.norton & mark d.dipasquale is another good source.

could you give an example of the errors you are seeing ....

and don't forget man rpc and see the other man pages at the end I see rpc_svc_err references rpc.h too.