Oracle10g安装后占用8080端口,与tomcat冲突

Oracle10g安装后占用8080端口,与tomcat冲突

1、使用system登录Oracle,利用dbms_xdb修改端口设置

SQL> -- Change the HTTP/WEBDAV port from 8080 to 8081
SQL>  call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get() , '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()', 8081));


Call completed.

你可能感兴趣的:(Oracle10g安装后占用8080端口,与tomcat冲突)