Current location - Quotes Website - Team slogan - How to change the port of weblogic 1 1g domain?
How to change the port of weblogic 1 1g domain?
The default port number of the new domain established after the successful installation of Weblogic is 700 1. If only one application is published, there is no need to modify this default port number at this time. If two or more applications are released, it is necessary to establish multiple domains and distinguish the port numbers of these domains.

There are two main methods to modify the Weblogic port:

1. Modify directly in the Weblogic console.

1. 1 Log in to the console and select Environment->; Server-> Management server (management)

Enter the following interface. (If the page is gray and cannot be modified, click Lock &; Edit button to unlock) directly modify the listening port to save.

2. Modify the configuration file config.xml directly.

The configuration file config.xml to be modified exists in the folder of the new domain: Weblogic installation path \ bea \ user _ projects \ domains \ newdomain \ config \ config.xml.

Will:

& lt server & gt

& lt name & gtAdminServer & lt/name & gt;;

& lt listening address & gt>& lt/listen-address & gt;;

& lt/server & gt;

Modified to (* * * is the port number to be modified):

& lt server & gt

& lt name & gtAdminServer & lt/name & gt;;

& ltssl & gt

& lt enabled & gtfalse & lt/enabled & gt;;

& lt/SSL & gt;

& lt listening port & gt>* * * * & lt/listen-port & gt;;

& lt listening address & gt>& lt/listen-address & gt;;

& lt/server & gt;