28

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?

Ben Brocka
  • 2,006
  • 4
  • 34
  • 53
avernet
  • 30,895
  • 44
  • 126
  • 163

1 Answers1

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