Operating System - HP-UX
1820637 Members
1875 Online
109626 Solutions
New Discussion юеВ

ups_mond give a lot of error in the console

 
Ahmed ABDOU_1
Advisor

ups_mond give a lot of error in the console

hi

We have k-class (HP 9000 K360 ) system with 10.20 and it has UPS (P/N: A2998A). It gives us the following error in syslog.log and the console.

Sep 26 12:22:11 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: UPS Monitor daemon starting; using configuration file /etc/ups_conf
Sep 26 12:22:11 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: Failed to create the named fifo (/var/stm/data/tools/monitor/ups_mond.fifo) to be used as c
ommunication channel with the UPS monitor(EMS). The mkfifo failed with errno = 2.
Sep 26 12:22:15 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: UPS /dev/tty0p1 interrupted but read of ups status failed - possible UPS hardware problem
Sep 26 12:22:15 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: AC Power to all recognized, system critical UPS's OK! System will not shutdown.
Sep 26 12:22:15 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: UPS /dev/tty0p1 UNKNOWN status/alarm x30 - may require repair
Sep 26 12:22:15 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: AC Power to all recognized, system critical UPS's OK! System will not shutdown.
Sep 26 12:22:17 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: UPS /dev/tty0p1 interrupted but read of ups status failed - possible UPS hardware problem
Sep 26 12:22:17 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: AC Power to all recognized, system critical UPS's OK! System will not shutdown.
Sep 26 12:22:17 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: UPS /dev/tty0p1 UNKNOWN status/alarm x30 - may require repair
Sep 26 12:22:17 nemss1 /usr/lbin/ups_mond[3139]: /usr/lbin/ups_mond: AC Power to all recognized, system critical UPS's OK! System will not shutdown.
???..

It kept repeating them unitill the processes were killed

We replace the cable, UPS, and the core I/O for the system so we can isolate it from hardware point of view (as the manual for PowerTrust System Guide).

Can you please help us in this.

Thank you in advance.

Best regards,



2 REPLIES 2
Paula J Frazer-Campbell
Honored Contributor

Re: ups_mond give a lot of error in the console

Hi
The line:-

(/var/stm/data/tools/monitor/ups_mond.fifo) to be used as communication channel with the UPS monitor(EMS). The mkfifo failed with errno = 2.

Might be where the problem is have a look at man mkfifo it might point you in a direction to resolve the problem.

BTW check dir permissions.

HTH

Paula
If you can spell SysAdmin then you is one - anon
A. Clay Stephenson
Acclaimed Contributor

Re: ups_mond give a lot of error in the console

HI:

Your fundamentap problem is indicated in this line:
(/var/stm/data/tools/monitor/ups_mond.fifo) to be used as c
ommunication channel with the UPS monitor(EMS). The mkfifo failed with errno = 2.


errno 2 = ENOENT (English Translation - at least one of the directories in the pathname does not exist.
mkdir -p /var/stm/data/tools/monitor

If it ain't broke, I can fix that.