Monday, April 6, 2015

How to change jboss application server EAP interface IP to enable login using IP of the machine



Jboss application server by default set to identify its local machine as localhost (127.0.0.1) and not by using the machine IP.if you want to install application server in a server machine and then access the server using client machines, you have to set your server IP in jboss configurations.

To change to access machine IP, change <jbossHOME>/standalone/configuration/standalone.xml as below mentioned,

<interfaces>
        <interface name="management">
            <inet-address value="${jboss.bind.address.management:<YOUR_IP>}"/>
        </interface>
        <interface name="public">
            <inet-address value="${jboss.bind.address: :<YOUR_IP>}"/>
        </interface>
        <interface name="unsecure">
            <inet-address value="${jboss.bind.address.unsecure: :<YOUR_IP>}"/>
        </interface>
    </interfaces>

Change both three line above with YOUR_IP.
Restart the server after done changes in standalone.xml.

Now you can access the server normally like below,

http://xxx.xxx.xxx.xxx:8080
or

** If you want to change the port as well, please check my previous post (How to change jboss application server (EAP) IP to enable login using IP of the machine)

That’s all.

2 comments:

  1. I really appreciate information shared above. It’s of great help. If someone want to learn Online (Virtual) instructor lead live training in Alfresco , kindly Contact MaxMunus
    MaxMunus Offer World Class Virtual Instructor led training on Alfresco. We have industry expert trainer. We provide Training Material and Software Support. MaxMunus has successfully conducted 1,00,000 + trainings in India, USA, UK, Australlia, Switzerland, Qatar, Saudi Arabia, Bangladesh, Bahrain and UAE etc.
    For Demo Contact us:
    Name : Arunkumar U
    Email : arun@maxmunus.com
    Skype id: training_maxmunus
    Contact No.-+91-9738507310
    Company Website :
    www.MaxMunus.com


    ReplyDelete