I tested the dashboard in a fresh pack and it is working fine. I see you are accessing it using a hostname.
So you might encounter an error like below, *javax.net.ssl.SSLException: hostname in certificate didn’t match: <localhost> != sub.domain.com <http://sub.domain.com>* This happens because by default the WSO2 Identity Server ships with a certificate for localhost. If you are accessing via a hostname you need to create a self-signed certificate for that key and import it to client-truststore.jks Here are the steps, 1. Navigate to <IS_HOME>/repository/resources/security in your terminal 2. Assuming that you have keytool installed, run the below command to generate a self-signed certificate for your domain name keytool -genkey -keyalg RSA -alias selfsigned -keystore wso2carbon.jks -storepass wso2carbon -keysize 2048 (When it prompts for first name and last name give your domain name) 3. Export the certificate, keytool -export -alias selfsigned -file selfsigned.crt -keystore wso2carbon.jks -storepass wso2carbon 4. Import it to the client-truststore.jks keytool -import -alias test -file selfsigned.crt -keystore client-truststore.jks -storepass wso2carbon Can you try restarting the server after these steps and accessing the dashboard? Thanks, Farasath Ahamed Software Engineer, WSO2 Inc.; http://wso2.com Mobile: +94777603866 Blog: blog.farazath.com Twitter: @farazath619 <https://twitter.com/farazath619> <http://wso2.com/signature> On Fri, Feb 10, 2017 at 5:22 PM, mgbii bax <[email protected]> wrote: > Hello, > > I'm currently evaluating wso2 Identity Server and I'm using the latest > version 5.3.0. By default, with or without using a load balancer I can't > access the End User Dashboard as stated in docs: > https://docs.wso2.com/display/IS530/Using+the+End+User+Dashboard. > > https://sub.domain.com:9443/dashboard > https://sub.domain.com:9443/dashboard/acs > https://lanhostname:9443/dashboard/ > https://lanhostname:9443/dashboard/acs > > I have tested several times, also did a fresh test and it seems that the > End User Dashboard is not working for Identity Server 5.3.0. > > What are the configs that I need to modify to make it work? > > > -- > > regards > > > > _______________________________________________ > Dev mailing list > [email protected] > http://wso2.org/cgi-bin/mailman/listinfo/dev > >
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
