attach: handshake failed

attach:handshake failed - received >GET / HTTP/1.1< - expected>JDWP-Handshake<

场景

协助技术同学调试了一个关于jdwp端口与http服务端口的问题,刚开始收到服务调用的同学说我们预上线服务有问题直接拒绝服务,查服务log发现一堆Debuggerfailed to attach JDWP-Handshake的信息,查服务配置的确开启了jdwp,但jdwp正常是不会影响正常业务服务的,直接与调用方确认服务端口,问题解决。

直接通过http协议访问应用的jdwp服务,产生如下日志:

 

jdb命令行

  • jdb -attach 10.20.0.15:8899
  • threads,
  • stop at/in,
  • step
  • locals
  • dump
  • classpath
  • where/wherei

示例

attach: handshake failed_第1张图片

 

attach: handshake failed_第2张图片

 

attach: handshake failed_第3张图片

 

资料

http://docs.oracle.com/javase/7/docs/technotes/tools/windows/jdb.html#options

 

你可能感兴趣的:(2001_编程语言,20011_Java,5001_辅助开发)