I am migrating from JBoss 5 to Wildfly. One of our server has group of small web applications that are deployed in two instances of the same JBoss, namely customappgrp1 & customappgrp2, with two custom configurations.
$ /home/apps/jboss-5.1.0.GA/server
+ all
+ default
+ minimal
+ standard
+ web
+ customappgrp1
+ customappgrp2
The server instances are started with the below command
$ ./run.sh -b 0.0.0.0 -c customappgrp1 -Djboss.service.binding.set=ports-01 -Dcom.a2wi.global.prop=/home/apps/jboss-5.1.0.GA/server/customappgrp1/prop/global.properties -Dglobal.properties.loc=/home/apps/jboss-5.1.0.GA/server/customappgrp1/prop/global.properties
$ ./run.sh -b 0.0.0.0 -c customappgrp2 -Djboss.service.binding.set=ports-02 -Dcom.a2wi.global.prop=/home/apps/jboss-5.1.0.GA/server/customappgrp2/prop/global.properties -Dglobal.properties.loc=/home/apps/jboss-5.1.0.GA/server/customappgrp2/prop/global.properties
I want to run multiple instances of Wildfly standalone with custom configuration, how do I do it? Is the same option available in the Wildfly too? Can a custom configuration be separated like the earlier version of JBoss in Wildfly?