How to Install JBOSS EAP 7.0.0 on RHEL6.5/CentOS6.5 – a step by step tutorial of Console Mode Installation
INTRODUCTION
In our previous blog - How to Install JBOSS EAP 7.0.0 on RHEL6.5/CentOS6.5 – a step by step tutorial of INSTALLER Installation, we have already mentioned how to configure JDK 8 JAVA_HOME and also shared the JBoss EAP 7 installer link. In this tutorial, we will demonstrate How To Install and Start a JBoss EAP 7.0.0 Server using Console Mode On RHEL 6.5/CentOS 6.5.
Step 1: Run the below command and an installer console interface comes up. Follow the below step by step instructions and install your JBoss EAP 7.0.0.
$ java -jar jboss-eap-7.0.0-installer.jar -console
Step 3: A license agreement window will comes up and you will get three option “press 1 to continue, 2 to quit, 3 to redisplay”. Here we will choose option “1” to proceed next.
Step 4: By default, the installer will create a default EAP installation directory on user home. But we will choose a different location to install it. Type the installation path /opt/redhat/EAP-7.0.0
Step 5: Now three options will be come “press 1 to continue, 2 to quit, 3 to redisplay”. Type option “1” to proceed next.
Step 6: See the total space required for Red Hat JBoss EAP installation and available disk space. If space is less on selected directory, you can go to Previous step and change the installation directory or if any package you don't wants to install you can deselect it. Otherwise type 0 to Next option.
Step 7: Now confirm your selection – press 1 then enter.
Step 8: Set the admin user, by default [admin] will display. So we will use “admin” as a default user.
Step 9: Set the password for admin user. And then press 1 to confirm.
Step 10: We will go with the default configuration. So, select the Input option “0” to proceed.
Step 12: press “n” to no shortcuts start-menu.
Step 13: Now installation is completed and select “y” for generate automatic installation script.
Step 14: Now create your auto installation script. By default auto.xml will be create, if you wants to change this name, then type script name like below.
Step 15: Start The JBoss EAP7 Server:
We are now ready to start our new JBoss AS 7 server. With JBoss EAP7, a new standalone and domain model has been introduced. In this tutorial, we focus on starting up a standalone server. The domain server will be part of a future tutorial.
Startup A JBoss EAP7, Standalone Instance:
A standalone instance of JBoss 7 can be starting by executing:
$ cd /opt/redhat/EAP-7.0.0/bin
$ ./standalone.sh &
Comments
Post a Comment