Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 583
avernet Avatar asked Oct 02 '08 23:10

avernet


People also ask

Which TCP IP port does Oracle XE use for connections?

The listener is listening for database connections through HTTP on port 8080. Oracle Database XE is properly registered with the listener and is ready to accept connections.

How do I change the port number in SQL Developer?

Look for the file httpd. conf. Change the port number and either restart the web server or just reboot the machine.


1 Answers

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

like image 102
Bartosz Blimke Avatar answered Sep 17 '22 15:09

Bartosz Blimke