1833017 Members
2908 Online
110048 Solutions
New Discussion

Re: kcalarm

 
SOLVED
Go to solution
Tony Constantine
Frequent Advisor

kcalarm

Hi,

When trying to run kcalarm -m on I get the following error:
ERROR: Unable to initialize EMS client.

in the /etc/opt/resmon/log/client.log I am getting:

Port 1712: Connection refused

kcusage and kcweb all work without errors.

Any clues as to how to resolve this??
3 REPLIES 3
Steven E. Protter
Exalted Contributor
Solution

Re: kcalarm

Shalom,

I got this error.

EMS was installed but not enabled in inetd.conf

Look for an entry and if found, uncomment and restart inetd

/etc/inetd.conf

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Marco A.
Esteemed Contributor

Re: kcalarm

Ensure the inetd is listening on port 1712. To do this, you can execute the following command. The desired output line is listed here:

netstat -an | grep 1712tcp 0 0 *.1712 *.* LISTEN

If inetd is not listening on port 1712, be sure the following entry is in /etc/inetd.conf:


registrar stream tcp nowait root \ /etc/opt/resmon/lbin/registrar \/etc/opt/resmon/lbin/registrar


Be sure the following line is in the /etc/services file:

registrar 1712/tcp # resource monitor service

Then enter inetd -c to reconfigure inetd.

Retry running the client that failed.

Hope this helps ...

Regards
Just unplug and plug in again ....
Tony Constantine
Frequent Advisor

Re: kcalarm

Cheers that has done the trick

Thanks for the help