How to disable Oracle XE component which is listening on 8080? How to disable Oracle XE component which is listening on 8080? oracle oracle

How to disable Oracle XE component which is listening on 8080?


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).