Tomcat配置远程调试端口(windows、Linux)
2021-05-13 17:27
阅读:710
当我们需要定位生产环境问题,而日志又不清晰的情况下,我们可以借助Tomcat提供的远程调试,设置如下:
// Linxu系统: apach/bin/startup.sh开始处中增加如下内容: declare -x CATALINA_OPTS="-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8081" // Windows系统: apach/bin/startup.bat开始处中增加如下内容: SET CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8081
linux打开端口命令的使用方法: nc -lp 8081 &(打开8081端口)
linux查看是否打开8081端口: netstat -an | grep 8081
注:linux下1010端口是默认开的,可以直接设置为调试1010端口即可。
Eclipse中配置debug>>Debug Configurations>>Java Remote Application:
启动成功之后Disconnect按钮会被点亮。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Tomcat配置远程调试端口(windows、Linux)
文章链接:http://soscw.com/index.php/essay/85230.html
文章标题:Tomcat配置远程调试端口(windows、Linux)
文章链接:http://soscw.com/index.php/essay/85230.html
评论
亲,登录后才可以留言!