Change Oracle port 11g

0

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.

    
asked by Tomás Ignacio Torres Calderón 20.10.2017 в 06:30
source

1 answer

1

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;
    
answered by 22.10.2017 в 23:53