Bean
Bean

Reputation: 550

Moving a Java Keystore

I have a wildcard cert and a jks with my chain of trust. When I want to use the wild card on another host for SSL (another java web server), do I simply copy the jks to the other host and use? Or is the jks specific to a host and therefore should remain on the host it was created on...?

Upvotes: 0

Views: 1439

Answers (1)

Warren Dew
Warren Dew

Reputation: 8928

Assuming there is nothing else in the Java keystore that you would want to keep on only the original server, you can copy the keystore to the other server.

Upvotes: 1

Related Questions