我正在尝试通过WLST嵌入式模式连接到Weblogic(远程)管理服务器 - 使用WLSTInterpreter.java
我正在尝试通过t3s
协议进行连接。在其他模式中,我们用于在JVM选项中传递以下参数
喜欢
java -Dweblogic.security.TrustKeyStore=DemoTrust
-Dweblogic.security.CustomTrustKeyStoreFileName=xxxx.jks
-Dweblogic.security.CustomTrustKeyStoreType=JKS
-Dweblogic.security.SSL.ignoreHostnameVerification=true
-Djava.security.egd=file:///dev/urandom weblogic.WLST <actual script>
但是,在嵌入模式下,我们正在为WLSTInterpreter创建实例并像这样连接
interpreter.exec("connect('user','password','t3://host:port')");
即使我在执行我的类时传递了jvm参数,它仍然会抛出错误的证书..任何线索? 。如何在嵌入模式下传递Jvm选项。