如何禁用正在侦听 8080 的 Oracle XE 组件?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/165105/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-18 17:19:37  来源:igfitidea点击:

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

oracleoracle-xe

提问by avernet

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?

安装 Oracle XE 后,Oracle 中的某些内容正在侦听端口 8080。我不确定他们是否有 Apache HTTPD、Tomcat 或其他东西。但是我怎样才能禁用它呢?

回答by Bartosz Blimke

It is Oracle XML DB HTTP Server; disable it as follows:

它是 Oracle XML DB HTTP Server;禁用它如下:

sqlplus '/ as sysdba'
EXEC DBMS_XDB.SETHTTPPORT(0);
commit;

You might have to restart Oracle XE (not just the listener).

您可能需要重新启动 Oracle XE(不仅仅是侦听器)。