使用 JAVA_OPTS 环境变量运行 java 没有效果

发布于 2024-08-17 09:59:04 字数 380 浏览 8 评论 0原文

在 shell 脚本中,我设置了 JAVA_OPTS 环境变量(以启用远程调试并增加内存),然后按如下方式执行 jar 文件:

export JAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n -Xms512m -Xmx512m"
java -jar analyse.jar $*

但 JAVA_OPTS 环境变量似乎没有任何效果,因为我无法连接到远程- 调试,我发现 JVM 内存没有变化。

可能是什么问题?

PS:我无法在 java -jar analysis.jar $* 命令中使用这些设置,因为我在应用程序中处理命令行参数。

In a shell script, I have set the JAVA_OPTS environment variable (to enable remote debugging and increase memory), and then I execute the jar file as follows:

export JAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n -Xms512m -Xmx512m"
java -jar analyse.jar $*

But it seems there is no effect of the JAVA_OPTS env variable as I cannot connect to remote-debugging and I see no change in memory for the JVM.

What could be the problem?

PS: I cannot use those settings in the java -jar analyse.jar $* command because I process command line arguments in the application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尸血腥色 2024-08-24 09:59:05

您可以设置 _JAVA_OPTIONS 而不是 JAVA_OPTS。这应该可以在没有 $_JAVA_OPTIONS 的情况下工作。

You can setup _JAVA_OPTIONS instead of JAVA_OPTS. This should work without $_JAVA_OPTIONS.

幼儿园老大 2024-08-24 09:59:05

我不知道有哪个 JVM 会真正检查 JAVA_OPTS 环境变量。通常这用在启动 JVM 的脚本中,并且通常只是将其添加到 java 命令行中。

这里要理解的关键是,-jar analysis.jar 位之前 java 参数只会影响 JVM 和 >不会传递给您的程序。因此,将脚本中的 java 行修改为:

java $JAVA_OPTS -jar analyse.jar $*

应该“正常工作”。

I don't know of any JVM that actually checks the JAVA_OPTS environment variable. Usually this is used in scripts which launch the JVM and they usually just add it to the java command-line.

The key thing to understand here is that arguments to java that come before the -jar analyse.jar bit will only affect the JVM and won't be passed along to your program. So, modifying the java line in your script to:

java $JAVA_OPTS -jar analyse.jar $*

Should "just work".

<逆流佳人身旁 2024-08-24 09:59:05

在过去 12 年中,进行了一些更改:

In the past 12 years some changes were made:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文