oracle 服務啓動TNSLSNR.exe佔用8080端口致使tomcat沒法啓動的問題

問題概述:
啓動tomcat報錯
java.net.BindException: Address already in use: JVM_Bind:8080
 
個人解決方法:
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(), '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',8081))
/
SQL> commit;java

 
若須要本地的ftp服務,還得執行下邊的調用更改
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
'/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()',2111))
/
SQL> commit;tomcat

SQL> exec dbms_xdb.cfg_refresh;
-- 檢查修改是否已經成功
SQL> select dbms_xdb.cfg_get from dual;.net

相關文章
相關標籤/搜索