解決Oracle XDB與Tomcat等的8080埠的衝突

一隻小螞蟻吆發表於2020-04-06

從9i開始,oracle的安裝預設包含了XDB。在資料庫後,Oracle XDB的http服務自動霸佔了8080埠,這給使用或JBoss、Tomcat進行java web開發的人造成了不小的麻煩。
這裡介紹修改XDB的http和ftp服務埠的3種方法:

  1.使用dbms_xdb包修改埠設定

  使用sys登入sqlplus
sqlplus sys/syspassword as sysdba
然後執行如下的指令碼
============================
--  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))
/
--  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;


  2.使用OEM  console

  選擇資料庫,XML  Database,Configuration。更改XDB的有關設定。

  3.修改SPFILE[SID名].ORA檔案,去掉資料庫的初始化引數:   

  這個檔案是Oracle的啟動配置檔案dispatchers='(PROTOCOL=TCP)  (SERVICE=XDB)',將會禁止XDB的http和ftp服務。

  重啟計算機,或者在服務中重啟OracleService[SID名]這個服務。重啟後可能無法使用Enterprise  Manager  Console和其他客戶端連線,這時請使用Oracle的Configuration  and  Migration  Tools/Net  Configuration  Assistant工具刪除監聽器,然後新建一個監聽器,重啟監聽器。

相關文章