I would like to know how to change the port of oracle 11g and what to occupy, that is, to know one that is free, since port 8080 is occupied by sql server and the 8081 Mysql. Greetings and thanks.
I would like to know how to change the port of oracle 11g and what to occupy, that is, to know one that is free, since port 8080 is occupied by sql server and the 8081 Mysql. Greetings and thanks.
It is changed with that command in sqlplus or cmd sqlplus / as sysdba:
exec dbms_xdb.sethttpport(8082);
and we verify the change of port with:
select dbms_xdb.sethttpport() from dual;