JBoss Enterprise Middleware Suite (JEMS)
- How to install and configure JBoss
1) Prerequisites & System requirements:-
The first mandatory requirement is to install a JDK 1.6/JDK 1.7 environment. The Java SE download site can be located at http://www.oracle.com/technetwork/java/javase/downloads/index.html.
java check after installation
Once you have completed your installation, run java -version to verify that it is correctly installed:
java -version
java version "1.7.0_02"
Java(TM) SE Runtime Environment (build 1.7.0_02-b13)
Java HotSpot(TM) Client VM (build 22.0-b10, mixed mode, sharing)
Now let's install JBoss AS 7. JBoss application server can be freely downloaded from the community site: http://www.jboss.org/jbossas/downloads/.
2) How to run JBoss installer :-
JBoss installation is very simple just need to unpacking the archive jboss-as-7.1.1.Final.zip.
Windows users can simply use any uncompress utility, such as WinZip, or WinRAR taking care to choose a folder, which doesn't contain empty spaces. Unix /Linux should use the unzip shell command to explode the archive:
$ unzip jboss-as-7.0.2.Final.zip
Starting up JBoss AS
After you have installed JBoss, it is wise to perform a simple startup test to validate that there are no major problems with your Java VM/operating system combination. To test your installation, move to the bin directory of your JBOSS_HOME directory and issue the following command:
java -version
java version "1.7.0_02"
Java(TM) SE Runtime Environment (build 1.7.0_02-b13)
Java HotSpot(TM) Client VM (build 22.0-b10, mixed mode, sharing)
Now let's install JBoss AS 7. JBoss application server can be freely downloaded from the community site: http://www.jboss.org/jbossas/downloads/.
2) How to run JBoss installer :-
JBoss installation is very simple just need to unpacking the archive jboss-as-7.1.1.Final.zip.
Windows users can simply use any uncompress utility, such as WinZip, or WinRAR taking care to choose a folder, which doesn't contain empty spaces. Unix /Linux should use the unzip shell command to explode the archive:
$ unzip jboss-as-7.0.2.Final.zip
Starting up JBoss AS
After you have installed JBoss, it is wise to perform a simple startup test to validate that there are no major problems with your Java VM/operating system combination. To test your installation, move to the bin directory of your JBOSS_HOME directory and issue the following command:
standalone.bat # Windows users
$ standalone.sh # Linux/Unix users
$ standalone.sh # Linux/Unix users
0 comments:
Post a Comment