`
ymanyang
  • 浏览: 4806 次
  • 性别: Icon_minigender_1
  • 来自: 成都
最近访客 更多访客>>
社区版块
存档分类
最新评论

How to change the XMLDB Http and FTP Ports for Oracle

阅读更多

To change the HTTP and FTP ports for Oracle XMLDB, we only need to call the following command in Oracle with DBA role.

 

  • change HTTP port from 8080 to 9999

call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(), '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()', 9999));
 
  • change FTP port from 2100 to 2111
call dbms_xdb.cfg_update(updateXML( dbms_xdb.cfg_get(), '/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()' , 2111));
 

  • refresh settings
exec dbms_xdb.cfg_refresh;
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics