Tag: keytool

globalsign Java Keytool – Create Keystore

Introduction This article covers the creation of a new Java keystore using Java keytool. Process 1. Create a new keystore: Open a command prompt in the same directory as Java keytool; alternatively, you may specify the full path of keytool in your command. Pay close attention to the alias you specify in this command as it will be needed later on. keytool -genkey -alias mydomain -keyalg RSA -keystore KeyStore.jks -keysize 2048 2. Generate a CSR […]