0

I am trying to follow the following link

http://blog.nanthrax.net/2012/12/how-to-enable-https-certificate-client-auth-with-karaf/

I am able to access the Webconsole with SSL in IE enter image description here

But it is not working in Chrome I am getting and Certificate error. enter image description here

why it is not working in chrome ? I am getting ssl_server_cert_untrusted_issuer

1 Answers1

0

Your certificate is not signed by a trusted issuer. See here for the difference. signed vs self signed certificates

Also, if you watch your screenshot of the IE closely, you can see that there is also a certificate error. Chrome is per default more restrictive than IE.

If you want to view the page in chrome, you can do this by adjusting chromes settings or install your certificate.

pan
  • 1,899
  • 1
  • 16
  • 24
  • I am using mkdir -p etc/keystores cd etc/keystores keytool -genkey -keyalg RSA -validity 365 -alias serverkey -keypass password -storepass password -keystore keystore.jks keytool -genkey -keyalg RSA -validity 365 -alias clientkey -keypass password -storepass password -keystore client.jks – athish sreeram Jul 12 '17 at 15:12
  • Have you tried to install your certificate [getting chrome to accept self signed localhost certificate](https://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate)? – pan Jul 13 '17 at 16:33
  • Yes I added the client certificate to the trust store in the chrome – athish sreeram Jul 17 '17 at 19:10