Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

1) Begin by follow following the instructions on checking the expiry date, as below....

...

2) Note down the owner details. In this example, it is: OU=ca.deepnetmfa.com, O=Deepnet Security, C=UK

3) Backup the current cacerts file:

...

Code Block
themeEmacs
cd C:\Program Files\Deepnet DualShield\jre
Code Block
themeEmacs
copy "lib\security\cacerts" "lib\security\cacerts.backup" 

4) Delete the old root CA:

Code Block
themeEmacs
bin\keytool -delete -alias dualultimateca -keystore lib\security\cacerts -storepass changeit

5) Generate a new Root CA using the owner information you acquired in step 2:

Code Block
themeEmacs
bin\keytool -genkeypair -alias dualultimateca -keyalg RSA -keysize 2048 -validity 36500 -dname "OU=ca.deepnetmfa.com, O=Deepnet Security, C=UK" -ext bc=ca:true -keystore lib\security\cacerts -storepass changeit -keypass changeit