8080端口被Oracle XDB的http服務佔用

運行:sqlplus sys/syspassword as sysdba


1、Change the HTTP/WEBDAV port from 8080 to 8081 
call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),'/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',8081)) ;
2、Change the FTP port from 2100 to 2111
call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get() , '/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()' ,2111)) ;

COMMIT;
EXEC dbms_xdb.cfg_refresh;


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章