安装WSO2 EEM(企业移动管理器)后,我可以将设备添加到设备管理中。但我无法打开发布商/商店,所有页面都会跳转到https://localhost:9443/publisher/acs或https://localhost:9443/samlsso。我应该安装WSO2 Identity Server还是为它配置SSO?
答案 0 :(得分:0)
您无需安装任何标识组件或明确配置sso。它们已经存在于香草EMM中。当您转到https://localhost:9443/publisher
时,应将其重定向到登录页面。
https://localhost:9443/authenticationendpoint/login.do
然后,当您输入凭据时,它应该将您重定向到以下网址。
1) https://localhost:9443/publisher/acs
2) https://localhost:9443/publisher
如果这对您不起作用,则日志文件中应该有例外。请检查一下。
答案 1 :(得分:0)
SSO配置部分[1]中的EMM文档中缺少部分内容。希望你试试这个VM。请按照此处给出的步骤操作,以使发布商和商店正常运作。
您遇到的原因是因为/ repository / conf目录中的app-manager.xml文件没有正确配置。
<SSOConfiguration>
<!-- URL of the IDP use for SSO -->
<IdentityProviderUrl>https://<EMM_HOST>:<EMM_HTTPS_PORT>/samlsso</IdentityProviderUrl>
<Configurators>
<Configurator>
<name>wso2is</name>
<version>5.0.0</version>
<providerClass>org.wso2.carbon.appmgt.impl.idp.sso.configurator.IS500SAMLSSOConfigurator</providerClass>
<parameters>
<providerURL>https://<EMM_HOST>:<EMM_HTTPS_PORT></providerURL>
<username>admin</username>
<password>admin</password>
</parameters>
</Configurator>
</Configurators>
</SSOConfiguration>
1。https://docs.wso2.com/display/EMM201/General+Server+Configurations