Quantcast
Channel: Active questions tagged https - Stack Overflow
Viewing all articles
Browse latest Browse all 1493

How to remove Unsecure warning for self signed certificate

$
0
0

FYI we were develop internal network application then put it on Tomcat server.Since we are using https, we created self signed certificate using this command,

keytool -genkey -keyalg RSA -noprompt -alias tomcat -dname "CN=bell-id.com, OU=NA, O=NA, L=NA, S=NA, C=NA" -keystore keystore.jks -validity 9999 -storepass changeme -keypass changeme

then put it on server.xml of tomcat conf.

<Connector     protocol="HTTP/1.1"    port="443" maxThreads="200"    scheme="https" secure="true" SSLEnabled="true"    keystoreFile="conf\keystore.jks" keystorePass="changeme"    clientAuth="false" sslProtocol="TLS" />

Ok, it's already working. btw we already setup DNS server so we can access it in our client website like this.

enter image description here

the url about like that, sorry I modify a bit,

https://rm-apps.bell-id.com/jw/web/login

this is for internal use.FYI I open it on latest Edge.

Then I click Not Secure warning, export the certificate to,enter image description here

single certificate, *.p7c file.Then import on Edge manage certificate settings, put it on "Trusted Root Certification Authorities" then status is OK.

enter image description here

Then I refresh the Edge browsers.voila, nothing happened, still "Not Secure"

How can I remove this "Not Secure" warning?


Viewing all articles
Browse latest Browse all 1493

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>