Change the port number of port 8080 occupied by oracle

Since port 8080 has become a common port for local tomcat development, modify the port 8080 of oracle xe

Method: Open the cmd command line and log in to oracle as dba:

一、sqlplus /nolog

二、conn system as sysdba

three,

 begin
   dbms_xdb.sethttpport('9999');
   dbms_xdb.setftpport('0');
 end;
 /

Insert picture description here

Guess you like

Origin blog.csdn.net/WA_MC/article/details/115252383