简体   繁体   English

Java 堆栈跟踪 Windows

[英]Java stack trace on Windows

I need to get a stack trace for a JVM process running on a client machine that uses windows.我需要获取在使用 windows 的客户端计算机上运行的 JVM 进程的堆栈跟踪。

The client has the JRE installed but not the JDK.客户端安装了 JRE,但没有安装 JDK。

I want to use JStack but it is not installed and we can't install a JDK on the client's machine.我想使用 JStack,但它没有安装,我们无法在客户端机器上安装 JDK。 I also tried using AdaptJ stack trace product from a Java Webstart Session but that didn't work because we remote in and get an error about not being the session that started the application at a specified PID.我还尝试使用来自 Java Webstart Session 的 AdaptJ 堆栈跟踪产品,但这不起作用,因为我们远程进入并收到一个错误,即不是 Z21D6F40CFB511982E4424E0E250A95 指定的应用程序启动的应用程序。

Essentially I want a way to install JStack without installing the JDK.本质上,我想要一种在不安装 JDK 的情况下安装 JStack 的方法。

You probably want to use SendSignal , which was designed for exactly this purpose.您可能想要使用专为此目的而设计的SendSignal

The JDK and associated tools work fine whether "installed" or not, if you just zip up and extract it to a temporary directory, you should be able to run jstack. JDK 和相关工具无论是否“安装”都可以正常工作,如果您只是 zip 并将其解压缩到一个临时目录,您应该能够运行 jstack。 (No PATH or JAVA_HOME modifications necessary). (无需修改 PATH 或 JAVA_HOME)。 Just make sure you use the same version that corresponds to the JRE your client has the application running with.只要确保您使用与您的客户端运行应用程序的 JRE 对应的相同版本即可。 At least in the case of JConsole, it seems to fuss if the versions are different.至少在 JConsole 的情况下,如果版本不同,它似乎会大惊小怪。 I'm not sure if jstack behaves the same way.我不确定 jstack 的行为是否相同。

I'm not saying this is the ideal solution, just that it would work.我并不是说这是理想的解决方案,只是它会起作用。 I think jdigital and Eddie's suggestions are better first bets, and even though this shouldn't interfere with an existing java installation the same way running the installer would, the customer may disagree regardless.我认为 jdigital 和 Eddie 的建议是更好的首选,即使这不会像运行安装程序那样干扰现有的 java 安装,但客户可能不同意。

jstack and jps are part of tools.jar of the JDK. jstack 和 jps 是 JDK 的 tools.jar 的一部分。 Also attach.dll is required to attach jstack to a process.还需要 attach.dll 将 jstack 附加到进程。

Ofcourse the tools.jar and attach.dll are not part of JRE.当然 tools.jar 和 attach.dll 不是 JRE 的一部分。

To make jstack work on a systems which has no JDK (mostly Windows), I usually do the following.为了让 jstack 在没有 JDK(主要是 Windows)的系统上工作,我通常会执行以下操作。

  1. Copy tools.jar and attach.dll from JDK and put in to some location on the target system.从 JDK 复制 tools.jar 和 attach.dll 并放入目标系统上的某个位置。 Example: to c:\temp\jstack示例:到 c:\temp\jstack
  2. Write a bat script to manually invoke it using JRE.编写一个 bat 脚本以使用 JRE 手动调用它。

For example, create a bat file jstack.bat:例如,创建一个bat文件jstack.bat:

set JRE=c:\jrefolder
"%JRE%\bin\java" -classpath "c:\temp\jstack\tools.jar" -Djava.library.path="c:\temp\jstack" sun.tools.jstack.JStack %*

Similarly for jps, create a jps.bat with following content.同样对于 jps,创建一个包含以下内容的 jps.bat。

set JRE=c:\jrefolder设置 JRE=c:\jrefolder

"%JRE%\bin\java" -classpath "c:\temp\jstack\tools.jar" -Djava.library.path="c:\temp\jstack" sun.tools.jps.Jps %*

Usage:用法:

jstack.bat -l <pid>

Hope this helps.希望这可以帮助。

Would you be able to use JConsole via remote access?您可以通过远程访问使用JConsole吗?

To get a thread dump with only a JRE you need tools.jar and attach.dll from the JDK of the same Java version.要仅使用 JRE 获取线程转储,您需要 tools.jar 和 attach.dll 来自同一 Java 版本的 JDK。 Install this somewhere and copy these into the jre.将其安装在某处并将它们复制到 jre 中。 Must be identical version!必须是同一个版本!

If you need a dump of a process running under the system account you can use the Windows sysinternals psexec.exe to gain access to the process.如果您需要转储在系统帐户下运行的进程,您可以使用 Windows sysinternals psexec.exe 来访问该进程。 Copy this into the JRE bin or somewhere in the path.将其复制到 JRE bin 或路径中的某个位置。

This batch file writes the stack dump to a file with a datetime filename so multiple traces can be taken and compared easily.此批处理文件将堆栈转储写入具有日期时间文件名的文件,因此可以轻松获取和比较多个跟踪。

Threads.bat线程.bat

:: Creates a thread dump for the tomcat6.exe process 
:: saved in a timestamped filename and views it!
:: Jim Birch 20111128 rev 2015-10-12

::Required the following files to be placed in the jre/bin folder:
:: attach.dll  - From the Java JDK  (must be the same version)
:: tools.jar   - ditto
:: psexec.exe  - from Windows sysinternals

::cd to jre/bin
d:
cd \application\jre\bin

::build datetime filename
rem datetime from wmi.exe
for /f "tokens=2 delims==" %%I in ('wmic os get localdatetime /format:list') do set dt0=%%I
rem  datetime string as YYYY-MM-DD-hhmmss
set dt=%dt0:~0,4%-%dt0:~4,2%-%dt0:~6,2%-%dt0:~8,6%
set ff=td-%dt%.txt
echo filename: %ff%

::PID of the process by named exe, eg, tomcat6    
for /F "tokens=2" %%I in ('TASKLIST /NH /FI "IMAGENAME eq tomcat6.exe"' ) DO SET PID=%%I
echo pid: %PID%

::combine above with jstack command
psexec -s jstack.exe -l %PID%  >>  %ff%

:: view result
start %ff%

::insert pause to debug or timer to review script operation
::ping localhost -n 20 >nul
::pause

If you want to use the on-board tools of the JDK and also want to both have a minimal (ie, not including copying the whole JDK) and convenient (ie not invoking with a custom .bat ) solution, this works for me (tried on Java 1.8):如果您想使用 JDK 的板载工具,并且希望同时拥有最小(即不包括复制整个 JDK)和方便(即不使用自定义.bat调用)的解决方案,这对我有用(试过 Java 1.8):

Create an empty folder ( $DEST below) and copy the following files (from the JDK $JDK_HOME ) into bin and lib folders as follows:创建一个空文件夹(下面的$DEST )并将以下文件(从 JDK $JDK_HOME )复制到binlib文件夹中,如下所示:

Source                          -> Destination

$JDK_HOME/bin/jps.exe           -> $DEST/bin/jps.exe
$JDK_HOME/bin/jstack.exe        -> $DEST/bin/jstack.exe
$JDK_HOME/bin/jli.dll           -> $DEST/bin/jli.dll
$JDK_HOME/jre/bin/attach.dll    -> $DEST/bin/attach.dll
$JDK_HOME/lib/tools.jar         -> $DEST/lib/tools.jar

Then ZIP and copy this over to the destination machine running a compatible JRE.然后 ZIP 并将其复制到运行兼容 JRE 的目标计算机。

You should be able to run jps and jstack from the bin folder now as you would run them from the original JDK.您现在应该能够从bin文件夹中运行jpsjstack ,就像从原始 JDK 中运行它们一样。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM