2017-03-15 82 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 –

相關問題