What is the importance of jboss.bind.address

What is the importance of jboss.bind.address? What if we are attached to the wrong address?

Can you explain to me the meaning of this command:

nohup ${JBOSS_HOME}/bin/run.sh -Djboss.bind.address=${BIND_IP} >> ${JBOSS_LOG} &

Thanks for the answer.

+3
source share
1 answer

It tells JBoss to which the local address is bound . The server will listen only on this particular interface, and not on all local interfaces.

(for example, if you have a binding address set 127.0.0.1, it will not listen to the connection with other hosts, only on localhost.)

This command line only starts JBoss in the background and sends it to the output $JBOSS_LOG.

+6
source

All Articles