JBossシリーズ16:JBoss 7/WildFly構成domainモード


内容の概要
JBoss 7/WildFlyには、standaloneモードとdimainモードの2つのモードがあります.詳細はコミュニティドキュメント(リンク)を参照してください.domainモードを簡単に構成する手順を示します.
domainモード構成手順
      2   domain controller(10.66.218.46),host controller(10.66.218.47),          JBOSS_HOME/domain/configuration/host.xml,                   。

domain controller一端の構成
1.管理ユーザーをdomain controllerセクションに作成し、JBOSS_へHOME/binディレクトリの下でadd-userを実行する.sh,Windowsはadd-userを実行する.bat、以下に例を示す
[kylin@unused bin]$ ./add-user.sh

What type of user do you wish to add?
 a) Management User (mgmt-users.properties)
 b) Application User (application-users.properties)
(a):

Enter the details of the new user to add.
Realm (ManagementRealm) :
Username : admin123
Password :
Re-enter Password :
About to add user 'admin123' for realm 'ManagementRealm'
Is this correct yes/no? yes
Added user 'admin123' to file '/home/kylin/work/./standalone/configuration/mgmt-users.properties'
Added user 'admin123' to file '/home/kylin/work/./domain/configuration/mgmt-users.properties'
Is this new user going to be used for one AS process to connect to another AS process?
e.g. for a slave host controller connecting to the master or for a Remoting connection for server to server EJB calls.
yes/no? yes
To represent the user add the following to the server-identities definition <secret value="UmVkSGF0MSE=" />

2.起動
domain controller,JBOSS_へHOME/binディレクトリでは、次のコマンドを実行します.
./domain.sh -b 10.66.218.46 -bmanagement=10.66.218.46

Windowsの使用に注意してください.batスクリプト
Host controller一端の構成
以下のすべての修正はhostを指す.xmlファイルはdomain/configurationディレクトリの下にあります.
1.の一部を以下のように変更します.
<domain-controller>
       <!-- Alternative remote domain controller configuration with a host and port -->
       <remote host="${jboss.domain.master.address}" port="${jboss.domain.master.port:9999}" username="admin123" security-realm="ManagementRealm"/>
</domain-controller>

2.
security-realm追加
以下
<management>
        <security-realms>
            <security-realm name="ManagementRealm">
                <server-identities>
                    <secret value="UmVkSGF0MSE=" />
                </server-identities>

3.ホスト名が一意であることを確認する
<host name="slave"

4.serverの名前が一意であることを確認する
<servers>
        <server name="server-four" group="main-server-group">
        </server>
        <server name="server-five" group="main-server-group" auto-start="true">
            <socket-bindings port-offset="150"/>
        </server>
        <server name="server-six" group="other-server-group" auto-start="false">
            <socket-bindings port-offset="250"/>
        </server>
    </servers>

5.起動
host controllerは以下の通りです.
./domain.sh -Djboss.domain.master.address=10.66.218.46

注意、Windowsマシンはdomainを使用します.bat起動
構成のテスト
ログインdomain controller管理インタフェース(http://10.66.218.46:9990/console)上に追加したserverが既に存在することを確認します.