2017-03-15 125 views
1

我们正在从WAS 8.5.5.2迁移到Liberty,目前我们已经设置了3个“动态出站端点SSL配置”。下面是屏蔽的数据,但表示从security.xml文件提取:在Websphere Liberty中配置多个出站SSL设置?

<dynamicSSLConfigSelections 
    xmi:id="DynamicSSLConfigSelection_1111222333444" 
    name="Client3CertSSLSettings" 
    description="SSL Settings for client 3" 
    dynamicSelectionInfo="*,wss.microso.net,443" 
    certificateAlias="qa_sha2" 
    sslConfig="SSLConfig_1" 
    managementScope="ManagementScope_1"/> 
<dynamicSSLConfigSelections 
    xmi:id="DynamicSSLConfigSelection_1111222333555" 
    name="Client1CertSSLSettings" 
    description="SSL Settings for client 1" 
    dynamicSelectionInfo="*,qa1.dummysite.net,*|*,qa2.dummysite.net,*|*,qa3.dummysite.net,*" 
    certificateAlias="client1_qa" 
    sslConfig="SSLConfig_1" 
    managementScope="ManagementScope_1"/> 
<dynamicSSLConfigSelections 
    xmi:id="DynamicSSLConfigSelection_1111222333666" 
    name="Client2CertSSLSettings" 
    description="SSL client certificate Settings for client 2" 
    dynamicSelectionInfo="*,ws.website.biz,443" 
    sslConfig="SSLConfig_1" 
    managementScope="ManagementScope_1"/> 

它从IBM文档看来,他们只允许在outboundSSLRef的一个条目。

是否可以在websphere liberty中配置多个出站SSL设置?我们如何将其转换为Liberty格式?


IBM文档研究: https://www.ibm.com/support/knowledgecenter/en/was_beta_liberty/com.ibm.websphere.wlp.nd.multiplatform.doc/ae/twlp_config_ssl_outbound.html

https://www.ibm.com/support/knowledgecenter/was_beta_liberty/com.ibm.websphere.wlp.nd.multiplatform.doc/ae/rwlp_liberty_ssl_defaults.html

+0

题外话。属于[ServerFault](https://serverfault.com/about) – fnt

回答

2

此时只有1个站SSL配置支持。

+0

谢谢。我还发现了一份关于传统WAS和Liberty之间差异的白皮书,希望它能帮助其他人:http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/documentation/ChoosingTraditionalWASorLiberty-16.0.0.4 .PDF –

相关问题