- JBoss:Developer's Guide
- Elvadas Nono Woguia
- 196字
- 2021-07-02 18:37:26
JBoss EAP 7 installation
To set up the BeOSBank EAP domain with three hosts, we will use various configuration techniques:
- XML file modifications
- CLI commands
- GUI updates
The first step to create our domain is to set up the infra; we will use single installation binaries and different configuration subfolders to simulate remote hosts:
$ unzip jboss-eap-7.0.0.zip -d $HOME/books/jbossdev/BeosBankDevDomain
Then, we will create virtual hosts and initialize the domain configuration folder with the existing templates:
$ export EAP_DOMAIN =$HOME/books/jbossdev/BeosBankDevDomain
$ cd $EAP_DOMAIN
$ mkdir host0 host1 host2
$ cp -r jboss-eap-7.0/domain host0/
$ cp -r jboss-eap-7.0/domain host1/
$ cp -r jboss-eap-7.0/domain host2/
In real life, you would have a separate installation binary for each host, but we will use the same installation binaries shared by the three hosts for this lab. The configuration files to be used for each host will be specified in the startup command. This is a best practice that allows you to run multiple instances of the EAP in the domain mode on the same machine from common binaries. It also allows you to upgrade to a newer version of EAP without affecting or overwriting your configuration files.
- Beginning Java Data Structures and Algorithms
- Vue.js 3.0源碼解析(微課視頻版)
- HTML5+CSS3+JavaScript Web開發案例教程(在線實訓版)
- AppInventor實踐教程:Android智能應用開發前傳
- Microsoft Azure Storage Essentials
- TMS320LF240x芯片原理、設計及應用
- Kotlin極簡教程
- SQL Server 2016 從入門到實戰(視頻教學版)
- Yii2 By Example
- 深入大型數據集:并行與分布化Python代碼
- Backbone.js Patterns and Best Practices
- 歐姆龍PLC編程指令與梯形圖快速入門
- Internet of Things with Arduino Cookbook
- jBPM6 Developer Guide
- Swift編程實戰:iOS應用開發實例及完整解決方案