error: transport error 202: bind failed: address already in use後來才發現, 只能kill來解決, 上網查了很多資料,error: jdwp transport dt_socket failed to initialize, transport_init(510)
jdwp exit error agent_error_transport_init(197): no transports initialized [debuginit.c:750]
解決方案是./catalina.sh jpda start, shutdown再也不會出現問題
在catalina.sh原始碼裡面查詢到, 啟動的時候需要傳入jpda, 埠需要初始化
...skipping...if [ "$1" = "jpda" ] ; then
if [ -z "$jpda_transport" ]; then
jpda_transport="dt_socket"
fiif [ -z "$jpda_address" ]; then
jpda_address="172.16.10.250:6086"
fiif [ -z "$jpda_suspend" ]; then
jpda_suspend="n"
fiif [ -z "$jpda_opts" ]; then
jpda_opts="-agentlib:jdwp=transport=$jpda_transport,address=$jpda_address,server=y,suspend=$jpda_suspend"
ficatalina_opts="$jpda_opts $catalina_opts"
shift
fi
Tomcat8 目錄結構
bin tomcat8.0 doc對這個目錄的簡單說明為 bin startup,shutdown,and other scripts.the sh files for unix systems are functional duplicates of the bat files for windo...
tomcat 8 安裝ssl證書
申請了 ssl證書 2.2 編譯安裝 cd openssl 1.1.1f config prefix usr local openssl no zlib make make install 2.3 備份原配置 如果已經安裝過 mv usr bin openssl usr bin openssl.ba...
Tomcat8的安裝配置
一 新增系統環境變數 1.新建系統變數 變數名 catalina home 變數值 d software tomcat8 apache tomcat 8.0.53 注 自己電腦tomcat的存放路徑 2配置path catalina home bin 注 在前面一定加 號,與其他環境配置區分 二 啟...