Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 344
Usman YousafZai Avatar asked Dec 20 '22 12:12

Usman YousafZai


1 Answers

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;
like image 181
rob2universe Avatar answered Jan 10 '23 19:01

rob2universe