1 Reply Latest reply on Aug 25, 2016 3:20 PM by adrianoschmidt

    Modcluster no WildFly 10 - Error null sending INFO command

    adrianoschmidt

      Opa  : )

       

      Galera... tô montando um loadbalancer com Apache HTTP Server e WildFly 10.1.... na Amazon... usando Ubuntu.... no modo Standalone..

       

      Configurei o Standalone-full-ha.xml:

       

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

        <mod-cluster-config advertise-socket="modcluster" proxies="apache1" advertise="false" sticky-session="true" load-balancing-group="arquitetura" connector="ajp">

         <dynamic-load-provider>

           <load-metric type="cpu"/>

         </dynamic-load-provider>

        </mod-cluster-config>

      </subsystem>

       

       

      <outbound-socket-binding name="apache1">

        <remote-destination host="<IP INTERNO DO APACHE>" port="80"/>

      </outbound-socket-binding>

       

       

      Mas deu o erro:

       

      2016-08-23 19:38:20,417 ERROR [org.jboss.modcluster] (UndertowEventHandlerAdapter - 1) MODCLUSTER000042: Error null sending INFO command to ip-<IP INTERNO DO APACHE>.sa-east-1.compute.internal/<IP INTERNO DO APACHE>:80, configuration will be reset: null

      2016-08-23 19:38:30,419 ERROR [org.jboss.modcluster] (UndertowEventHandlerAdapter - 1) MODCLUSTER000042: Error null sending INFO command to ip-<IP INTERNO DO APACHE>.sa-east-1.compute.internal/<IP INTERNO DO APACHE>:80, configuration will be reset: null

      2016-08-23 19:38:40,421 ERROR [org.jboss.modcluster] (UndertowEventHandlerAdapter - 1) MODCLUSTER000042: Error null sending INFO command to ip-<IP INTERNO DO APACHE>.sa-east-1.compute.internal/<IP INTERNO DO APACHE>:80, configuration will be reset: null

       


      Alguém tem ideia do que possa ser?

       

       

      Vaaleu!

      Adriano Schmidt

      www.localhost8080.com.br

        • 1. Re: Modcluster no WildFly 10 - Error null sending INFO command
          adrianoschmidt

          Achei a solução... meu conf do apache estava assim:

           

          <Directory />

               Order deny,allow

               Allow from all

          </Directory>

           

          Mas nessa última versão tem que ser assim:

           

          <Directory />

              AllowOverride none

              Require all granted

          </Directory>

           

          Agora estou com outro probleminha... tenho q testar melhor aqui, depois abro um chamado pra esse novo erro.

           

          Abraço!
          Adriano Schmdt