i've installed jboss-as-7.1.1.Final on my windows 7. the installation was successfull, and i can see the server running on http:/localhost:8080/
But the problem is I am trying to add the users through add-user.bat file. It shows a error message like
C:\jboss-as-7.1.1.Final\bin>add-user.bat
The system cannot find the path specified.
Press any key to continue . . .
If I remove @echo off
from the top of the script I see
> if "x" == "x" (set "JBOSS_MODULEPATH=C:\jboss-as-7.1.1.Final \modules" )
> "C:\java\jre7\bin\bin\java" -jar "C:\jboss-as-7.1.1.Fina l\jboss-modules.jar"
-mp "C:\jboss-as-7.1.1.Final\modules" org.jboss.as .domain-add-user
The system cannot find the path specified.
> if "x" == "x" pause
Press any key to continue . . .
I have set JBOSS_HOME
and JAVA_HOME
in environmental variables of my system.
Can any one please help to resolve this?
@echo off
at the top of the script and running it again. It looks like it can't find yourjava
though. – Anthropophagite