<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic CCMON problems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363949#M866852</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Does anyone have CCMON running on their clusters? We have installed this product on 6 of our clusters, but we are coming across a lot of problems concerning the monitoring of the errors. In fact, we would like a different error message for every error that comes up. &lt;BR /&gt;&lt;BR /&gt;Anyone out there who can give me a hand?&lt;BR /&gt;&lt;BR /&gt;Thanx!&lt;BR /&gt;&lt;BR /&gt;M.&lt;BR /&gt;</description>
    <pubDate>Tue, 24 Aug 2004 07:12:55 GMT</pubDate>
    <dc:creator>martino</dc:creator>
    <dc:date>2004-08-24T07:12:55Z</dc:date>
    <item>
      <title>CCMON problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363949#M866852</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Does anyone have CCMON running on their clusters? We have installed this product on 6 of our clusters, but we are coming across a lot of problems concerning the monitoring of the errors. In fact, we would like a different error message for every error that comes up. &lt;BR /&gt;&lt;BR /&gt;Anyone out there who can give me a hand?&lt;BR /&gt;&lt;BR /&gt;Thanx!&lt;BR /&gt;&lt;BR /&gt;M.&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Aug 2004 07:12:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363949#M866852</guid>
      <dc:creator>martino</dc:creator>
      <dc:date>2004-08-24T07:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: CCMON problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363950#M866853</link>
      <description>Yes, I'm running it.&lt;BR /&gt;&lt;BR /&gt;What kind of problems are you having?&lt;BR /&gt;&lt;BR /&gt;Did HP install it?&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 24 Aug 2004 08:02:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363950#M866853</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-08-24T08:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: CCMON problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363951#M866854</link>
      <description>No, we installed the product and had a guy over to "help" us install and configure the product. But er...it was rather us explaining the product to him...&lt;BR /&gt;&lt;BR /&gt;However, my problem at the moment is with the actual alerts/errors that are shown in the CCMon.log or the CCMON.html file. &lt;BR /&gt;&lt;BR /&gt;For 1 cluster we have 10 errors for example, however, those 10 errors are only seen as 1 standard error message in OpC which tells us to verify the CCMon.log. Every time, this is shown as a major warning in OpC.&lt;BR /&gt;&lt;BR /&gt;What I'd like is to have 10 different error messages in OpC for every single error. And not some sort of standard CCMON message. &lt;BR /&gt;&lt;BR /&gt;Is that possible? Have scripts been develloped for this? &lt;BR /&gt;&lt;BR /&gt;Also, is it possible to create the asci file and the html file at the same time?&lt;BR /&gt;&lt;BR /&gt;What do you think?&lt;BR /&gt;&lt;BR /&gt;How do you monitor the alerts that you get for your cluster(s) ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;M.&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Aug 2004 08:35:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363951#M866854</guid>
      <dc:creator>martino</dc:creator>
      <dc:date>2004-08-24T08:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: CCMON problems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363952#M866855</link>
      <description>First off - I don't monitor ccmon with Opc - so can't help you there...  :(&lt;BR /&gt;&lt;BR /&gt;Cluster alerts are just monitored with standard templates from Opc, ie cluster up/down, package up/down...&lt;BR /&gt;&lt;BR /&gt;For CCMON, I run from cron every Monday:&lt;BR /&gt;&lt;BR /&gt;# Run the Cluster Consistency Monitor script&lt;BR /&gt;0 0 * * 1 /usr/local/bin/ccmonitor &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt; # cat /usr/local/bin/ccmonitor&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;#&lt;BR /&gt;# This script runs the cluster consistency monitor gathering agent&lt;BR /&gt;#&lt;BR /&gt;# Geoff Wild&lt;BR /&gt;#&lt;BR /&gt;#&lt;BR /&gt;# Are we root?&lt;BR /&gt;#&lt;BR /&gt;OWNER=`/usr/bin/id -un`&lt;BR /&gt;if [ "$OWNER" != root ]; then&lt;BR /&gt;    echo "ERROR: You must be root or have Super User privileges"&lt;BR /&gt;    echo "       to run this program..."&lt;BR /&gt;&lt;BR /&gt;   exit 1&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;HOST=`/usr/bin/uname -n`&lt;BR /&gt;/opt/cctool/bin/ibmake -f /opt/cctool/etc/profile/SCAN_RSDB.pfl&lt;BR /&gt;/opt/cctool/bin/repgen -f /opt/cctool/etc/profile/RepGen_RSDB.pfl&lt;BR /&gt;if [ "$HOST" = svr003 ]; then&lt;BR /&gt;        /usr/bin/rcp /opt/cctool/data/RSDB.pc0003 pc0004:/opt/cctool/data/&lt;BR /&gt;fi&lt;BR /&gt;if [ "$HOST" = svr004 ]; then&lt;BR /&gt;        /opt/cctool/bin/ccmon -f /opt/cctool/etc/profile/CCMon_COMP.pfl&lt;BR /&gt;        /usr/bin/mailx -s "Cluster Consistency Comparator Report" gwild@mydomain.com &amp;lt; /opt/cctool/CCMon.log&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;So the log file is in txt format...&lt;BR /&gt;&lt;BR /&gt;But, /opt/cctool/etc/profile/RepGen_RSDB.pfl, also generates the web pages&lt;BR /&gt;&lt;BR /&gt;I'm afraid I can't help you too much - sorry about that...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 24 Aug 2004 09:03:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ccmon-problems/m-p/3363952#M866855</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-08-24T09:03:56Z</dc:date>
    </item>
  </channel>
</rss>

