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?
+4
A:
It is Oracle XML DB HTTP Server
To disable it:`
sqlplus '/ as sysdba'
EXEC DBMS_XDB.SETHTTPPORT(0);
Bartosz Blimke
2008-10-02 23:55:34