Saturday, February 8, 2014

Change the weblogic startup port number


Sometimes we might want to start multiple weblogic servers on the same machine with different port numbers but the default port number is 7001 and we want to change it


How to change the port number

Open and edit the config.xml file in the location specific to the current domain in the weblogic server
                C:\Oracle\Middleware_webcenter\user_projects\domains\new_domain\config

  <server>
    <name>AdminServer</name>
     <listen-port>7601</listen-port>      => Change the port here
    <server-diagnostic-config>
      <name>AdminServer</name>
      <diagnostic-context-enabled>true</diagnostic-context-enabled>
    </server-diagnostic-config>

  </server>

No comments:

Post a Comment