0

我試圖配置WebSphere Application Server - Liberty Profile 8.5.5.1以支持公共應用程序商店中的應用程序並遵循以下鏈接:[http://www-01.ibm.com/support/knowledgecenter/SSZH4A_6.2.0/com.ibm.worklight.installconfig.doc/appcenter/t_ac_applinks_google.html][1]將Google/iTunes的根證書導入WebSphere Application Server - Liberty Profile 8.5.5.1

它說我必須將Google Play的根證書導入到WebSphere信任存儲中。這是我被卡住的部分,因爲我不知道如何打開自由配置文件控制檯。

回答

2

Liberty個人資料還沒有控制檯。整個配置保存在server.xml文件中。 在該文件中,你會發現參考密鑰庫,就像這樣:

<feature>ssl-1.0</feature> 
<keyStore id="defaultKeyStore" password="password" /> 

如果使用默認設置,你應該有key.jks文件中的serverName\resources\security\key.jks

然後你需要添加證書有使用一些工具,例如keytool或ikeyman(如果您手邊有完整的WAS)。 keytool示例:

keytool -importcert -alias certAlias -file certificate.crt -keystore key.jks 
相關問題