0

我试图在我的鹦鹉家庭操作系统中安装 ZAP 代理,但我无法安装它,并且我在终端中收到的错误如下:

(A fatal error has been detected by the Java Runtime Environment:
 SIGBUS (0x7) at pc=0x00007f904544b12f, pid=6446, tid=6447JRE version: OpenJDK Runtime 
 Environment (11.0.5+10) (build 11.0.5+10-post-Debian-2)
 Java VM: OpenJDK 64-Bit Server VM (11.0.5+10-post-Debian-2, mixed mode, sharing, tiered, 
 compressed oops, g1 gc, linux-amd64)
 Problematic frame:
 V  [libjvm.so+0xcce12f]
 No core dump will be written. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
 If you would like to submit a bug report, please visit:
 (https://bugs.debian.org/openjdk-11)

Aborted
4

1 回答 1

0

此错误消息...

(A fatal error has been detected by the Java Runtime Environment:
 SIGBUS (0x7) at pc=0x00007f904544b12f, pid=6446, tid=6447JRE version: OpenJDK Runtime 
 Environment (11.0.5+10) (build 11.0.5+10-post-Debian-2)
 Java VM: OpenJDK 64-Bit Server VM (11.0.5+10-post-Debian-2, mixed mode, sharing, tiered, 
 compressed oops, g1 gc, linux-amd64)
 Problematic frame:
 V  [libjvm.so+0xcce12f]

...暗示该V框架是导致文件崩溃的有问题的框架。libjvm.so

您观察到的崩溃可能不是问题,而是问题。


深潜

但是,根据支持哪些 Java 版本?页面,ZAP 应该能够与所有/更新的 Java 版本一起运行,但对于某些 ZAP 版本可能需要最低要求:

  • ZAP 2.7.0 及更高版本至少需要 Java 1.8
  • ZAP 2.0.0 及更高版本至少需要 Java 1.7
  • 以前版本的 ZAP 也支持 Java 1.6,最后一个版本是 1.4.1

此外,根据下载 ZAP页面中的文档:

  • Windows 和 Linux 版本需要 Java 8 或更高版本才能运行。
  • macOS 版本包括 Java 8 - 如果您不想下载,可以使用 Linux 或跨平台版本。

最后,根据版本 2.9.0页面中的文档:

这是一个错误修复和增强版本,至少需要 Java 8。请注意,建议至少使用 Java 11,尤其是对于高 DPI 显示器。


参考

您可以在以下位置找到一些相关的讨论:

于 2020-05-20T13:18:10.507 回答