将Google / iTunes的根证书导入WebSphere Application Server - Liberty Profile 8.5.5.1

时间:2014-09-10 13:54:36

标签: ibm-mobilefirst worklight-server websphere-liberty worklight-security

我正在尝试配置 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 Play的Root Certificate导入WebSphere信任库。这是因为我不知道如何打开自由配置文件控制台而陷入困境的部分。

1 个答案:

答案 0 :(得分: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