AppSensei
AppSensei

Reputation: 8400

Not able to start Jboss Server on run.bat

I'm getting a ClassNotFoundException when I run the JBoss Server using run.bat.

enter image description here enter image description here

Updated:

enter image description here

Upvotes: 2

Views: 3916

Answers (2)

abhimanyu thakur
abhimanyu thakur

Reputation: 1

your java path is not set to jdk and you have to configure java path in as java_home in standalone.conf.bat and start with run.bat

Upvotes: 0

CoolBeans
CoolBeans

Reputation: 20800

The issue seems to be that your JAVA_HOME environment variable is not set to a JDK. Your screen shot shows a JRE for the JAVA_HOME. Switch that to a JDK and re-try starting JBoss.

Also the JAVA_HOME should be in your PATH environment variable.

Alternatively you can manually set the JAVA_HOME in the run.conf.bat file

Upvotes: 1

Related Questions