How To Find weblogic bind ip address
![Oracle Weblogic Server](https://i0.wp.com/www.techpaste.com/wp-content/uploads/2014/07/Oracle-Weblogic-Server.jpg?fit=237%2C246&ssl=1)
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.