0 Replies Latest reply on Apr 28, 2015 11:28 AM by michael.burger

    Wildfly 8.2 stability and deploy problems under domain mode

    michael.burger

      Hi,

       

      in our company there we create a new infrastructor with wildfly as application server in domain mode.

       

      We have 3 environments (dev+test+demo) and any environment has two nodes.

       

      Node1 and Node2 for DEV & TEST are on the same server, as the controller.

      Node 1 and node2 for DEMO are on a other server.

       

      We use MAVEN to deploy our .EAR aps on the WILDFLY. Something like this

       

      <plugin>

           <groupId>org.wildfly.plugins</groupId>

           <artifactId>wildfly-maven-plugin</artifactId>

           <version>1.0.2.Final</version>

           <configuration>

                <hostname>${jboss.host}</hostname>

                <port>${jboss.port}</port>

                <username>${jboss.user}</username>

                <password>${jboss.password}</password>

                <name>${environment}-${nomePorject}.ear</name>

                <domain>

                     <server-groups>

                          <server-group>${environment}-environment</server-group>

                     </server-groups>

                     <profiles>

                          <profile>default</profile>

                     </profiles>

                </domain>

           </configuration>

           <executions>

                <execution>

                     <id>deploy</id>

                     <phase>install</phase>

                     <goals>

                          <goal>deploy</goal>

                     </goals>

                </execution>

            </executions>

      </plugin>

       

       

      Our problem is the stability of the entire system! Very Very Very often (several times a day) the sistem will not work correctly. Sometime we can not deploy on an system, the deploy hangs and after sometime it will went in timeout.

      Sometime also our apps will not respond on any request.

      So we don't know what is happen, and we get no messages on server side. So we don't know what to do but also we think we are not the only one which will use wildfly in domain mode with two and more nodes, so I think the problem is our configuration.

       

      So can you help us? Have you some ideas?

       

      thx

      Michael