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