How To Find weblogic bind ip address

Oracle Weblogic Server

When you are running multiple instances of weblogic per server. Each instance has its own server ip address. So for each server, we have multiple ip addresses.

there is a way in weblogic that allows to get the ip address of the weblogic instance

First, you should bind the address as follows:

java -msXXm -mxXXm … -Dweblogic.system.bindAddr=112.123.105.225 weblogic.Server

when you start the server. then when you need to look up the IP address, you can do:

string ipaddr=getProperty(“weblogic.system.bindAddr”);

In case of any ©Copyright or missing credits issue please check CopyRights page for faster resolutions.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.