Versions Compared

Key

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

...

  1. Export your certificate in .cer format by running the following command.

    Code Block
    languagepowershell
     Export-Certificate -Cert $cert -FilePath "{DesiredPath}\$certname.cer"   ## Replace {DesiredPath} with the desired location e.g. C:\Users\Public\Documents

    Once the certificate is created, you should be able to check the certificate specifications.
    Image RemovedImage Added

  2. Create a password for your certificate private key and save it in a variable. Replace {myPassword} with the password that you wish to use to protect your certificate's private key.

    Code Block
    languagepowershell
     $mypwd = ConvertTo-SecureString -String "{myPassword}" -Force -AsPlainText  ## Replace {myPassword}
  3. Run the next command to export your private key, use the password you store in the $mypwd variable.

    Code Block
    languagepowershell
     Export-PfxCertificate -Cert $cert -FilePath "{DesiredPath}\$certname.pfx" -Password $mypwd   ## Replace {DesiredPath} with your desired location e.g. C:\Users\Public\Documents

    When the private key is exported in a .pfx file, you should be able to check the certificate specifications.

    Image RemovedImage Added

Import your private key into the Trusted Root Certification Authorities

...

  1. Open the Microsoft Management Console (MMC) by selecting Run from the Start menu as Administrator. Type mmc and click OK.
    Image Modified
  2. When the MCC window opens, click File from the menu toolbar, and select Add/Remove Snap-in...
  3. Once the Add or Remove Snap-ins window opens, select Certificates from the Available snap-ins options and click Add >.
  4. In the Certificates snap-in window, select Computer Account, and click Next.
  5. In the Select Computer window, verify that the Local computer is set as the computer you want the snap-in to manage. Click Finish.
    Image Modified
  6. Import your certificate (.cer file) into the Trusted Root Certification Authorities folder. To do so, expand the Certificates node, from the Console Root tree and right-click the Trusted Root Certification Authorities folder, select All Tasks, and click Import...
    Image Removed Image Added 
  7. When the Certificate Import Wizard opens, follow the instructions to import the .cer file previously created.

    Info

    When adding your certificate or private key using the Certificate Import Wizard, use the password you previously defined in the Export your certificate private key section.

...

  1. Download the free KeyStore Explorer utility from
    Newtab2
    aliashttp://keystore-explorer.org/
    urlhttp://keystore-explorer.org/
    and install it.
  2. Open KeyStore Explorer as administrator. KeyStore Explorer displays the following Quick Start options. On launch, it may ask you to download an updated Java Cryptography Extension (JCE) Unlimited Strength file.
    Image RemovedImage Added
  3. Click Open an existing KeyStore.
  4. Browse to the IDERA Dashboard conf directory, the default path is  C:\Program Files\Idera\Dashboard\WebApplication\conf , and open the keystore file.
    Image RemovedImage Added
  5. On the Unlock KeyStore dialog, enter "password" and then click OK.
  6. KeyStore Explorer displays a list of any existing certificates. Delete the existing key and click the Import Key Pair.
    Image Modified
  7. Select PKCS #12 as the type of key you want to import, and click OK
    Image Modified
  8. Look for the key you created steps above, in this case, windev2302eval.pfx.click Choose.
    Image Modified
  9. Select an alias for your key, and click OK.
    Image Removed
    Image Added 
  10. In Enter New Password type "password", confirm, Choose a password and click OK.
    Image Modified 
  11. When the configuration is completed the following message pops up, click OK.
    Image Removed Image Added 
  12. Return to the main KeyStore Explorer window, save your configuration, and close the application.
    Image Modified
  13. Close all the opened browsers.
  14. Restart the Idera Dashboard Core Service and Idera Dashboard Web Application Service.
  15. Access to the Idera Dashboard with the following link https://<{certificateName}>:9291 .

...