- Select Run SQL Command Line
-
Connect to Oracle10g using SYSTEM account
SQL>connect system/<password>
Provide password that you gave at the time of installing Oracle10g.
-
Execute the following stored procedure to change Http port number to 8888
SQL>execute DBMS_XDB.SetHttpPort(8888);
SetHttpPort is a procedure in DBMS_XDB package. It is used to change port number
used by Oracle for Http Server.
-
You can retrieve the port number just to confirm the change as follows.
SQL>select dbms_xdb.GetHttpPort() from dual;