this command was failing while checking jboss version
%JBOSS_HOME%\standalone.bat --version
Once resolved install can continue.
To resolve:
In install log, you can see the following, but this jar file name is renamed by TD infr who created us the VM with jboss. Original name from jboss is "jboss-as-server-7.5.0.Final-redhat-21.jar"
=====
version = jboss-as-server.jar
====
So there is a reference to this jar in the module.xml as belw.
=======
(DEV)
[email protected]:/usr/share/jbossas $ grep -rl "jboss-as-server.jar" .
/usr/share/jbossas/modules/system/layers/base/org/jboss/as/server/main/module.xml
(DEV)
[email protected]:/usr/share/jbossas $
====
In that file Here is the content:
<resources>
<resource-root path="jboss-as-server.jar"/>
<!-- Insert resources here -->
</resources>
So, I copied " jboss-as-server.jar" to " jboss-as-server.jar"
And modified the module.xml to point to "jboss-as-server-7.5.0.Final-redhat-21.jar"