Use Cases
Securing Web Servers with SSL/TLS
keytool -genkeypair -alias tomcat -keyalg RSA -keysize 2048 -keystore tomcat.keystore -dname "CN=www.example.com, OU=IT, O=Example Corp, L=City, ST=State, C=Country" -storepass changeit -keypass changeitkeytool -certreq -alias tomcat -file tomcat.csr -keystore tomcat.keystore -storepass changeitkeytool -importcert -alias root -file rootCA.crt -keystore tomcat.keystore -storepass changeitkeytool -importcert -alias tomcat -file tomcat.crt -keystore tomcat.keystore -storepass changeit<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" keystoreFile="conf/tomcat.keystore" keystorePass="changeit" clientAuth="false" sslProtocol="TLS"/>
Authenticating Clients in a Secure Environment
Last updated