(Eclipse) JBoss never starts

1

I'm having trouble trying to make JBoss run on the Eclipse self. I installed JBossASTools, downloaded the latest version of JBoss, and did the default installation procedure for new server in Eclipse (with the configuration file standalone-full ). However, when I give start , the following messages are displayed on the console:

22:01:45,321 INFORMAÇÕES [org.jboss.modules] JBoss Modules version 1.1.1.GA
22:01:45,556 INFO  [org.jboss.msc] JBoss MSC version 1.0.2.GA
22:01:45,603 INFO  [org.jboss.as] JBAS015899: JBoss AS 7.1.1.Final "Brontes" starting

And then the server stays forever in the "starting" state without ever actually being started.

My Operating System is Windows 8.1. What should I do?

    
asked by anonymous 01.05.2015 / 03:08

1 answer

2

The version you are using ( JBoss AS 7.1.1.Final ) does not run in Java 8, in fact none of the community is a known issue for a while. See this snippet of this thread , commented by one of the developers:

  

Yes it is normal.

     

There have been some changes in JDK8 that prevent AS7 and current version of EAP6 to start under JDK8.

     

We have many JDK8 related fixes in WildFly so I would recommend you to use that.   As for EAP goes, the start up on JDK8 is fixed in upcoming 6.2 release.

     

So in short, I would be more then welcome if people would test WildFly on JDK8 as we are working on making whole testsuite pass on it.

In short, there are some changes in JDK8 that prevent the functioning of AS 7 and older versions of EAP 6 from running in JDK8.

Then you can do one of the following:

  • run in java 7
  • use WildFly (I recommend this if you do not want to install another JRE)
  • use JBoss EAP 6.4
01.05.2015 / 03:40