How to change XDB http port to port 80?
Hi!
I have installed oracle db 11.2 on my oracle enterprise linux 5.4 machine.
I've tried the following to set the http listener to port 80 in sqlplus:
exec dbms_xdb.sethttpport('80');
alter system register;
But the listener isn't listening on port 80. After some research in the web I found that ports from 1 to 1023 are reserved ports. When I change the port to 1024 with the above procedure it works well.
So how can I change the port to 80? What are the steps to configure?
Thanks
Markus