1833783 Members
2816 Online
110063 Solutions
New Discussion

rpc detail

 
SOLVED
Go to solution
Ahmed_58
Regular Advisor

rpc detail

Hi,
I need to find out the installation detail for rpc services. swlist did not show anything. is it a prt of nfs?

Regards,
Ahmed


7 REPLIES 7
sudhapage
Regular Advisor

Re: rpc detail

What error you are getting, when trying to execute swlist command?

Swlist -> will display about your Installed software and patches.

Check with nslookup, type your system name and check whether name resolution is happening or not?

Regards,
Sudhakaran.K
Ahmed_58
Regular Advisor

Re: rpc detail

Hi Sudhakaran,
with "swlist -l product | grep rpc" nothing display back.
there is no problem with rpc services, all i need to know is the installation detail like version etc.

rgds,
Ahmed
Peter Nikitka
Honored Contributor

Re: rpc detail

Hi,

if you want to determine the name of the package, which contained a specific existing file (which was installed via swinstall), use

swlist -l file | fgrep /path/to/file_or_dir

This command may take a while, but will give you the requested information.

mfG Peter
The Universe is a pretty big place, it's bigger than anything anyone has ever dreamed of before. So if it's just us, seems like an awful waste of space, right? Jodie Foster in "Contact"
IT_2007
Honored Contributor
Solution

Re: rpc detail

I think you may looking for rpc services which comes along with NFS core. Check /etc/rc.log

Start NFS core subsystem
Output from "/sbin/rc2.d/S400nfs.core start":
----------------------------
starting NFS CORE networking

starting up the rpcbind
/usr/sbin/rpcbind
starting up the nfskd daemon
/usr/sbin/nfskd


or also check
# ps -ef |grep rpc
root 775 1 0 Sep 12 ? 0:00 /usr/sbin/rpcbind
root 1168 1 0 Sep 12 ? 1:14 /opt/dce/sbin/rpcd
root 1605 1 0 Sep 12 ? 0:00 /usr/sbin/rpc.mountd
root 1634 1 0 Sep 12 ? 0:00 /usr/sbin/rpc.statd
root 1640 1 0 Sep 12 ? 0:00 /usr/sbin/rpc.lockd
root 2997 811 0 Sep 14 ? 0:00 /usr/dt/bin/rpc.ttdbserver
Kevin Wright
Honored Contributor

Re: rpc detail

Yes Ahmed, it will be part of the NFS services software. Check NFS Core from swlist.
A. Clay Stephenson
Acclaimed Contributor

Re: rpc detail

All you really need to do is an "rpcinfo". For example, "rpcinfo -m" will display a nice concise listing of all RPC's registered on your box. Man rpcinfo for details.
If it ain't broke, I can fix that.
Ahmed_58
Regular Advisor

Re: rpc detail

Thanks to all, now i got enought info.