Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我尝试使用 JMeter 开始录制,我会收到错误消息unrecognized command -genkeypair。
unrecognized command -genkeypair
显示此错误是因为该工具存在 2 个版本keytool。
keytool
JMeter 使用了错误的系统密钥工具,它不知道选项“-genkeypair”。
如何强制 Apache JMeter 使用 java JDK/JRE 的 keytool?
第一次尝试是在 $PATH 中设置 JAVA 路径,PATH=$PATH:$JAVA_HOME/bin但这不是解决方案,因为 JMeter 仍然使用 $PATH 中第一个找到/发现的 keytool-path。
PATH=$PATH:$JAVA_HOME/bin
这就是解决方案:我不是在 $PATH 的末尾而是在开头设置了 java keytool 的路径。
PATH=$JAVA_HOME/bin:$PATH
希望对你也有帮助。