JBoss EAP 6 - 保护集群节点之间的通信通道
JBoss EAP 6 - Secure the communications channels between clustered nodes
我正在学习 "Redhat JBoss Admiministrator" 认证。
所需的能力之一是 "Secure the communications channels between clustered nodes"。实际上,集群中两个节点之间的通信是使用 jgroups 子系统完成的,但我没有在文档中找到任何关于保护此通信的参考资料。
你能帮助理解这一点吗?
提前致谢
嗯,JGroups 恰好包含一个名为 ENCRYPT 的协议,您应该可以使用它。查看 JGroups 文档:
http://www.jgroups.org/manual/html/protlist.html
将其放入 jgroups 子系统的 XML 格式通常有点繁琐 - 基本形状可能是
<protocol type="ENCRYPT">
<property name="key_store_name">my.keystore</property>
<property name="store_password">myStorePw</property>
<property name="alias">myKeyAlias</property>
</protocol>
免责声明:我还没有尝试过。
我正在学习 "Redhat JBoss Admiministrator" 认证。
所需的能力之一是 "Secure the communications channels between clustered nodes"。实际上,集群中两个节点之间的通信是使用 jgroups 子系统完成的,但我没有在文档中找到任何关于保护此通信的参考资料。
你能帮助理解这一点吗?
提前致谢
嗯,JGroups 恰好包含一个名为 ENCRYPT 的协议,您应该可以使用它。查看 JGroups 文档:
http://www.jgroups.org/manual/html/protlist.html
将其放入 jgroups 子系统的 XML 格式通常有点繁琐 - 基本形状可能是
<protocol type="ENCRYPT">
<property name="key_store_name">my.keystore</property>
<property name="store_password">myStorePw</property>
<property name="alias">myKeyAlias</property>
</protocol>
免责声明:我还没有尝试过。