While starting your jboss-as-7.1.1.Final sometimes it happen that our JBoss stop after this line on command prompt
[org.jboss.as] JBAS015899: JBoss AS 7.1.1.Final "Brontes" starting
This is know issue with JBoss in JDK8.
To get ride of this please add following line in your standalone.bat
rem setting JAVA_HOME by siddhu
set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_75
Note: Make sure we need to add above given lines below
set JAVA_OPTS=-Dprogram.name=%PROGNAME% %JAVA_OPTS%
by stating set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_75 we force JBoss to take JDK7 for execution.
[org.jboss.as] JBAS015899: JBoss AS 7.1.1.Final "Brontes" starting
This is know issue with JBoss in JDK8.
To get ride of this please add following line in your standalone.bat
rem setting JAVA_HOME by siddhu
set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_75
Note: Make sure we need to add above given lines below
set JAVA_OPTS=-Dprogram.name=%PROGNAME% %JAVA_OPTS%
by stating set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_75 we force JBoss to take JDK7 for execution.
No comments:
Post a Comment