52ky 发表于 2022-5-4 13:50:25

支持 SSL 的 Artemis ActiveMQ 配置

问题
我想用 SSL 设置 Artemis

我的 etc/bootstrap.xml 文件如下所示:
<broker xmlns="http://activemq.org/schema">
   <web bind="https://0.0.0.0:8161" path="web" keystorePath="keystore.p12" keystorePassword="123" truststorePath="trusstore.p12" truststorePassword="123">
      <app url="activemq-branding" war="activemq-branding.war"/>
      <app url="artemis-plugin" war="artemis-plugin.war"/>
      <app url="console" war="console.war"/>
   </web>
</broker>

我确实喜欢它写在文档中,但是当我运行 artemis 服务时,我得到一个错误:
javax.xml.bind.UnmarshalException
- with linked exception:

我不明白我做错了什么?

回答
我使用以下方法修复了此错误:keystrepath、keystrepassword、trustStorePath 和 trustStorePassword。



页: [1]
查看完整版本: 支持 SSL 的 Artemis ActiveMQ 配置