How can I run multiple instances of WebLogic 4.5x or 5.x on the same machine?
Created May 4, 2012
Robert Castaneda To run multiple instances of Weblogic on the same machine, each instance must either
To run on a different address, you'll have to have a multi-homed host and configure the weblogic.system.bindAddr property.
- Run on a different port (Using the weblogic.system.listenPort property)
and/or
- Run on a different IP Address (Using the weblogic.system.bindAddr property)
- Create a directory underneath your weblogic directory (or location of your weblogic.system.home). For example "secondserver".
- Inside this directory, create or copy an existing weblogic.properties file. Inside this file you should set your weblogic.system.listenPort to a value that is different from the other server (myserver)
- When launching your weblogic server, you'll need to modify your start script to specify the weblogic.system.name property on the command line to the value of the "secondserver" directory as follows:
java ... -Dweblogic.system.name=secondserver ... weblogic.Server