Operating System - HP-UX
1821993 Members
3562 Online
109638 Solutions
New Discussion юеВ

Re: portmap mangement in HP-UX

 
Giuseppe_13
Frequent Advisor

portmap mangement in HP-UX

the portmap service is supported by rpcbind in HP-UX ?

Which file is the startup file for rpcbind ?

thanks
3 REPLIES 3
Jeff Schussele
Honored Contributor

Re: portmap mangement in HP-UX

Hi Giuseppe,

That would be

/sbin/init.d/nfs.core

run it with a start parameter.

HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
baiju_3
Esteemed Contributor

Re: portmap mangement in HP-UX


Some related info .

http://docs.hp.com/en/B1031-90043/ch07s05.html



Thanks,
BL.
Good things Just Got better (Plz,not stolen from advertisement -:) )
Jeff Lightner_1
Frequent Advisor

Re: portmap mangement in HP-UX

FYI: Any time you're wondering "What starts this?" a good way to being is to simply grep for it from /sbin/init.d/*

For rpcbind it will give you multiple files:
/sbin/init.d/nfs.client
/sbin/init.d/nfs.core
/sbin/init.d/nfs.server
/sbin/init.d/nis.client
/sbin/init.d/nis.server
/sbin/init.d/nisplus.client
/sbin/init.d/nisplus.server

You'd have to look at these to determine which you're actually starting or which actually starts rpcbind. The prior poster gave you nfs.core but I wanted to point this out as most "startup" on HP-UX is done via /sbin/rc?.d/ files that are linked back to these /sbin/init.d files. It may save you time in the future.

Note: For Solaris and Linux the files are in /etc/init.d instead.