linux下tomcat开启远程调试

时间:2024-04-13 22:20:13

一、不同Linux系统配置

1.1   center下,在startup.sh文件首行中添加如下语句:

declare -x CATALINA_OPTS="-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000"(不要换行,要在同一行)

linux下tomcat开启远程调试

1.2   在Ubuntu下,在catalina.sh文件首行中添加如下语句:

CATALINA_OPTS="-Xdebug  -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"(不要换行,要在同一行)

linux下tomcat开启远程调试

二、在开发工具中的配置

2.1   eclipse点击run, 再点击Debug Configurations,配置服务器的ip和端口号,还有项目名称:

linux下tomcat开启远程调试

2.2   在IDEA中的配置,在下图 1 处点击 “Edit Configurations...”,并按步骤点击linux下tomcat开启远程调试

linux下tomcat开启远程调试

注意点:在出现链接不上的时候,重启linux上的服务,再次去连接。