...
Code Block | ||
---|---|---|
| ||
keytool -genkey -keyalg RSA -alias workbench -keystore <path-to-keystore> -storepass <store-password> -storetype PKCS12 -keysize 2048 -sigalg SHA256withRSA -dname "CN=<host url>" -ext san=dns:engine.yourdomain.com<host url> -validity <days-valid> |
Please replace the <placeholder-values>
in this command based on the following descriptions:
...
This example generates a key with a 36510-day year validity.
Code Block | ||
---|---|---|
| ||
$> keytool -genkey -keyalg RSA -alias workbench -keystore workbench.p12 \ -storepass changeit -storetype PKCS12 -keysize 2048 \ -sigalg SHA256withRSA -dname "CN=my-engine.datamigrators.com" \ -ext san=dns:my-engine.datamigrators.com \ -validity 3650 |
...