5 Replies Latest reply on Mar 13, 2015 8:05 AM by pferraro

    MODCLUSTER000045: AverageSystemLoadMetric is not supported on this system and will be disabled

    valsaraj007

      Hi,

       

      I am seeing the following warning in JBoss log when I start Apache with mod_cluster in Windows. I am using WildFly-8.2.0.Final:

      WARN  [org.jboss.modcluster] (UndertowEventHandlerAdapter - 1) MODCLUSTER000045: AverageSystemLoadMetric is not supported on this system and will be disabled.

       

      WildFly conf:

      <subsystem xmlns="urn:jboss:domain:modcluster:1.2">

                  <mod-cluster-config advertise-socket="modcluster" connector="ajp">

                      <dynamic-load-provider>

                          <load-metric type="cpu"/>

                      </dynamic-load-provider>

                  </mod-cluster-config>

              </subsystem>

       

      Apache conf:

      <IfModule manager_module>

        Listen 127.0.0.1:6666

        ManagerBalancerName mycluster

        <VirtualHost 127.0.0.1:6666>

          <Location />

           Order deny,allow

           Deny from all

           Allow from 127.0.0.

          </Location>

       

       

          KeepAliveTimeout 300

          MaxKeepAliveRequests 0

          #ServerAdvertise on http://127.0.0.1:6666

          AdvertiseFrequency 5

          #AdvertiseSecurityKey secret

          #AdvertiseGroup 224.0.1.105:23364

          EnableMCPMReceive

       

       

          <Location /mod_cluster_manager>

             SetHandler mod_cluster-manager

             Order deny,allow

             Deny from all

             Allow from 127.0.0

          </Location>

       

       

        </VirtualHost>

      </IfModule>

       

       

      Thanks!