After installing Oracle XE, something in Oracle is listening on port 8080. I am not sure if they have an Apache HTTPD, a Tomcat, or something else. But how can I disable it?
Asked
Active
Viewed 1.7k times
1 Answers
44
It is Oracle XML DB HTTP Server; disable it as follows:
sqlplus '/ as sysdba'
EXEC DBMS_XDB.SETHTTPPORT(0);
commit;
You might have to restart Oracle XE (not just the listener).

Dave Jarvis
- 30,436
- 41
- 178
- 315

Bartosz Blimke
- 6,498
- 3
- 24
- 19
-
1Then you need to restart Oracle XE related services, not sure which one. – Jaime Hablutzel Sep 21 '14 at 03:32
-
4In my case the port was closed after running that command. No need to restart here. – jorgeu Nov 25 '14 at 22:11