Joby
Joby

Reputation: 1

How can I install ssl certificate in tomcat server in Windows Server?

I have a file with extension(.p7s) and four files with extension(.crt) from Certified Authority. How can I install SSL by using only these files?

Upvotes: 0

Views: 1244

Answers (2)

Manish Upadhyay
Manish Upadhyay

Reputation: 21

Use Java keytool utility to manage your SSL certificates in a Java keystore. Refer to this Tomcat documentation to learn how to create a Java keystore and install SSL certificate for Tomcat.

Tomcat documentation

Upvotes: 2

Bernard
Bernard

Reputation: 7961

You should use the Java keytool utility to manage your certificates in a Java keystore. Have a look at this Tomcat documentation to learn how to create a Java keystore for use with Tomcat.

Upvotes: 0

Related Questions