Operating System - HP-UX
1833578 Members
3397 Online
110061 Solutions
New Discussion

Re: Inetd is running with logging disabled

 
SOLVED
Go to solution
Gaby1110
Frequent Advisor

Inetd is running with logging disabled

Hi,

I am getting the below message in one of the HP-UX Servers log. Please let me know how enable logging for inetd ?

"Inetd is running with logging disabled"

Thanks in advance
Gaby
2 REPLIES 2
Solution

Re: Inetd is running with logging disabled

Gaby,

To enable logging just run:

inetd -l

to make the change permanent across reboots edit the file /etc/rc.config.d/netdaemons and change the line:

export INETD_ARGS=""

to

export INETD_ARGS="-l"

HTH

Duncan


I am an HPE Employee
Accept or Kudo
Gaby1110
Frequent Advisor

Re: Inetd is running with logging disabled

Thanks Duncan.