linux jboss eap 6.3.0 安装

1. 下载jboss-eap-6.3.0.zip

2.解压到/usr/local/ 目录下

3.进入bin目录,执行domain.sh

4.在浏览器输入http://localhost:9990 提示

The Enterprise Application Platform 6 is running.

运行成功

5.jboss默认需要登录,才能进行管理,执行add-user.sh 添加管理员

6.jboss默认只有本机能访问,进入domain/configuration ,打开hots.xml

<interfaces>

        <interface name="management">

            <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>

        </interface>

        <interface name="public">

           <inet-address value="${jboss.bind.address:127.0.0.1}"/>

        </interface>

        <interface name="unsecure">

            <!-- Used for IIOP sockets in the standard configuration.

                 To secure JacORB you need to setup SSL -->

            <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>

        </interface>

    </interfaces>

将IP地址改为0.0.0.0

 

猜你喜欢

转载自dutianzhao.iteye.com/blog/2153036