Skip to main content

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 2: Choose option “0” for language “English”, if you wants to setup any other language you can choose your own language. Press Enter to next option.
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 11: Now press 1 to continue.
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

Popular posts from this blog

How to configure a Datasource in JBoss / WildFly as a JAR Deployment

JDBC drivers can be installed as a JAR deployment using either the management CLI or the management console. As long as the driver is JDBC 4-compliant, it will automatically be recognized and installed as a JDBC driver upon deployment. 1. Download the appropriate JDBC driver from your database vendor. 2. Start the JBoss EAP/WildFly server. 3. Now most of the drivers coming with JDBC 4-compliant, but in case If the JDBC driver JAR is not JDBC 4-compliant, it can be made deployable using the following steps. i) Create a directory structure META-INF/services on your local system. $ mkdir -p META-INF/services    ii) Create a file inside META-INF/services/java.sql.Driver. $ touch META-INF/services/java.sql.Driver   iii) Add one line in the file to indicate the fully-qualified class name of the JDBC driver. $ echo “com.mysql.jdbc.Driver” > META-INF/services/java.sql.Driv...

Shift your Data into Virtualization

A single approach to data management that allows an application or user to retrieve and manipulate data without knowing any technical details about the data. That approach called Data Virtualization. Data Virtualization is different than traditional virtualization like - VMWare, Hypervisor, KVM, etc. because we already learned how to do virtualization of OS, Hardware and Storage, now time to add some more into virtualization, which is DATA. What is Data Virtualization? Data virtualization is a single window used to describe any approach to data management that allows an application to retrieve and manipulate data without requiring technical details about the data, such as how it is formatted, or where it is physically located. Why use Data Virtualization? Data virtualization promotes efficiency in data usage and processing and accelerates time to market on projects with complex data storage infrastructure. The purpose is to allow data to be accessed without creating extra ...

How to Install JBOSS EAP 7.0.0 on RHEL6.5/CentOS6.5 – a step by step tutorial of INSTALLER Installation

INTRODUCTION In this tutorial, we will demonstrate how to install and start a JBoss EAP 7.0.0 server on RHEL 6.5/CentOS 6.5. We use Oracle JDK 8 for this tutorial. This Tutorial Consists Of The Following Steps: Step 1: Download installer link Step 2: JDK installation and verification Step 3 to Step 14: JBoss EAP 7 installation procedure using INSTALLER Installation Step 15: Start Jboss EAP 7 server Red Hat JBoss EAP 7.0 is based on Wildfly 10 , and provides pre-configured options for features such as high-availability clustering, messaging, and distributed caching. And it is an application server that works as a middleware platform, is built on open standards, and is compliant with the Java EE 7 specification. Step 1: Download the installer from: https://developers.redhat.com/products/eap/download/ Select the EAP 7.0.0 (Developers version) from the list. Click on Installer option within Download column. For Linux/ Windows/Mac...