Error starting jboss server

I have installed Jboss server on windows xp. When I try to execute "run.bat" I got an error like

"To start JBoss Application Server, see C: \ Program Files \ jboss-as-7.1.1.Fin al \ bin .. \ README.txt"

Before executing "run.bat", I set the environment variable JBOSS_HOME = C: \ Program Files \ jboss-as-7.1.1.Final;

After getting the error, I saw "readme.txt", it says "this jar should be used with standalone clients, not deployments that are deployed to an AS7 instance." What is the problem? What should I do?

+3


source to share


1 answer


Do not use run.bat

. Use either %JBOSS_HOME%\bin\standanlone.bat

or %JBOSS_HOME%\bin\domain.bat

. I would start with a standalone one like the one you want. The domain is designed to run multiple instances and the need for one management interface to interact with each server.



+1


source







All Articles