SQL> connect / as sysdba;
Connected.
-- 把HTTP/WEBDAV端口从8080改到8081
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
2 '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',8081))
3 /
Call completed.
SQL> commit;
Commit complete.
SQL> exec dbms_xdb.cfg_refresh;
更改Oracle HTTP端口配置
本文介绍如何通过执行特定的SQL命令将Oracle中HTTP/WEBDAV服务的监听端口从默认的8080更改为8081。文中详细展示了使用dbms_xdb.cfg_update过程更新配置的方法。
1089

被折叠的 条评论
为什么被折叠?



