Oracle XMLDB 占用了8080端口。
(Ref: http://www.red-database-security.com/…_default_ports.html)
解决办法:
- 修改XMLDB的端口设置
- 禁止XMLDB监听端口
(Ref: http://herosys.net/x/modules/wfsection/article.php?articleid=84)
修改方法:
$ sqlplus "/ as sysdba"
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
2 '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()', 8083));
Call completed.
SQL> call dbms_xdb.cfg_update(updateXML( dbms_xdb.cfg_get(),
2 '/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()' , 2111));
Call completed.
SQL> exec dbms_xdb.cfg_refresh;
PL/SQL procedure successfully completed.
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
2 '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()', 8083));
Call completed.
SQL> call dbms_xdb.cfg_update(updateXML( dbms_xdb.cfg_get(),
2 '/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()' , 2111));
Call completed.
SQL> exec dbms_xdb.cfg_refresh;
PL/SQL procedure successfully completed.
(Ref: http://www.red-database-security.com/…-xmldb_port.html)
0 Responses to “修改Oracle XMLDB的监听端口”