问题描述
运行 wso2server.bat、worker.bat、dashboard.bat 后,我在尝试访问 Analytics Dashboard(例如业务角色、监控、策略、门户)时遇到错误.
After running wso2server.bat, worker.bat, dashboard.bat, I get an error when trying to access Analytics Dashboard like business-role, monitoring, policies, portal.
"Error while SSL handshake: javax.net.ssl.SSLException: Received fatal alert: certificate_unknown"
我该怎么做,以便仪表板分析正常运行
what should I do, so that the dashboard analytics running normally
Fix Solved WSO2 IS 5.10 无法借用ssl://localhost:7712 的客户端 - 已解决
Fix Solved WSO2 IS 5.10 Cannot borrow client for ssl://localhost:7712 - Solved
推荐答案
[IS_HOME]/repository/conf/deployment.toml 添加
[IS_HOME]/repository/conf/deployment.toml Add
[[事件监听器]]
id = "authn_data_publisher_proxy"
type = "org.wso2.carbon.identity.core.handler.AbstractIdentityMessageHandler"
name = "org.wso2.carbon.identity.data.publisher.application.authentication.AuthnDataPublisherProxy"
订单 = 11
[identity_mgt.analytics_login_data_publisher]
启用 = 真
[identity_mgt.analytics_session_data_publisher]
启用 = 真
[[event_listener]]
id = "authn_data_publisher_proxy"
type = "org.wso2.carbon.identity.core.handler.AbstractIdentityMessageHandler"
name = "org.wso2.carbon.identity.data.publisher.application.authentication.AuthnDataPublisherProxy"
order = 11
[identity_mgt.analytics_login_data_publisher]
enable = true
[identity_mgt.analytics_session_data_publisher]
enable = true
从 WSO2 导出 wso2carbon.jks 是 keytool -export -alias wso2carbon -keystore "C:\Program Files\WSO2\Identity Server\5.10.0\repository\resources\security\wso2carbon.jks"-file publickey.pem
export wso2carbon.jks from WSO2 IS keytool -export -alias wso2carbon -keystore "C: \ Program Files\WSO2\Identity Server\5.10.0\repository\resources\security\wso2carbon.jks"-file publickey.pem
结果仍然是错误,因此分析仪表板未检测到浏览器中的会话
the result is still an error, so that the session in the browser is not detected by the analytics dashboard
这篇关于访问分析仪表板配置文件时出现 SSL 握手错误 - 已解决的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!