Operating System - HP-UX
1827286 Members
1762 Online
109717 Solutions
New Discussion

Will inetd service restart affect cluster?

 
SOLVED
Go to solution
Jayasuntar
Valued Contributor

Will inetd service restart affect cluster?

Hi all,

We need to disable some of the service in the inetd.conf. We have Mc SG running on the servers. Will restart of inetd service bring down cluster or packages?

Thanks in advance

Jay
5 REPLIES 5
Orhan Biyiklioglu
Respected Contributor

Re: Will inetd service restart affect cluster?

AFAIK restarting inetd will not bring down the cluster but since serviguard manager uses the auth service under the inetd you will not be able to view cluster status when the inetd is down.

hth
Mark Nieuwboer
Esteemed Contributor
Solution

Re: Will inetd service restart affect cluster?

Hi Jay,

You can remove service from inetd.conf without losing service.
But not the one you need to log in are that is used voor applications such as serviceguard. After that refresh the inetd.conf rather then restart.
use the command with inetd -c.
Also you can restrict the services in /var/adm/ined.sec

grtz. mark
Orhan Biyiklioglu
Respected Contributor

Re: Will inetd service restart affect cluster?

You do not need to restart the inetd to disable services.

Just type

inetd -c to Reconfigure the Internet daemon; in other words, force the current inetd to reread /etc/inetd.conf (excerpt from the man)

hth
Bharat Katkar
Honored Contributor

Re: Will inetd service restart affect cluster?

Hi Jay,
It will definitely affect the workig of the cluster though not for a long time but mometarily atleast.
But you can get rid of this by "inetd -c" as already suggested above.

Make all required changes in /etc/inetd.conf and just do "/sbin/inetd -c".

It should help.
Regards,
You need to know a lot to actually know how little you know
Jayasuntar
Valued Contributor

Re: Will inetd service restart affect cluster?

Thanks a lot ..