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;