无法打开https://localhost:9443/carbon/.



我在deployment.toml中添加了[admin_console.authenticator.saml_sso_authenticator] enable=true。我无法打开https://localhost:9443/carbon/,我的浏览器总是转到about:blank#blocked。然后,我删除了[admin_console.authenticator.saml_sso_authenticator] enable=true。现在我可以打开https://localhost:9443/carbon/正常地

你能告诉我怎么做吗?

assertion_consumer_service_urlidentity_provider_sso_service_url必须添加到deployment.toml文件中。

enable = true
login_page = "/carbon/admin/login.jsp"
assertion_consumer_service_url = "https://localhost:9443/acs"
identity_provider_sso_service_url = "https://localhost:9443/samlsso"

你可以参考https://is.docs.wso2.com/en/5.11.0/learn/multi-factor-authentication-for-wso2-is-management-console/了解更多信息。

相关内容

最新更新