Search code examples
oracle11goracle-apex

Oracle Apex Port Changing


I am using Oracle Apex version 4.2. It is configured to listen on port 8080 by default. How I am going to change the port of Oracle Apex after the installation?


Solution

  • To find out which port Oracle Apex web app is configured on run:

    select dbms_xdb.gethttpport from dual;
    

    To change the port which Oracle Apex web app is configured on run:

    exec dbms_xdb.sethttpport('8081');
    commit;