We can divide the request proces in three steps:
- Certificate private key creation
- CSR generation (must be submitted to our SSL certificate provider for certificate creation)
- Certificate import
- Keytool -genkey -alias AliasName -keyalg RSA -keysize 2048 -keystore “PathKeystore”
- keytool -certreq -alias AliasName -keyalg RSA -file FileName.csr -keystore “PathKeystore” -ext SAN=dns:DNSName.it,Hostname,…
- keytool -import -alias AliasName -keystore “PathKeystore” -file FileName.cer