Versions Compared

Key

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

...

  1. Restart your Admin Tools 2.0 service

    1. Then, load https://localhost:9181 or https://yourwebdomain:9181

Ensure that…

  • Under nodeconfig.json, set the value for certificate and key property in certs to null or empty:

Code Block
  "certs": {
    "certificate": "", <-- Follow example here 
    "key": "",         <-- Follow example here 
    "pfx": "<pfx filepath>/cert.pfx"
  },

...

Option 2: Using a key and pem file

...

  1. Restart the Admin Tools server, and open the browser using the HTTPS location.

Finalizing Configuration for

...

your HTTPS Certificate

...

(for All Options Above)

  • It is important to properly specify what configuration type that is being used for your Admin Tools certificate and nullify or providing empty values to other certificate properties. Improper specification of the certification type may cause complications when running Admin Tools.

  • Under nodeconfig.json, specify which HTTPS certificate type you will use for your environment (under certs) and property in certs to null or empty:

Code Block
  Example below: Using .pfx for your HTTPS certificate 
  
  "certs": {
    "certificate": "", <-- Empty value 
    "key": "",         <-- Empty value
    "pfx": "<pfx filepath>/cert.pfx", <-- pfx filepath example 
    "pfximport": ""    <-- Empty value
  },
  • If using certificate and key, ensure that both contain filepath values while pfx and pfximport are left blank. If using pfximport, provide filename and leave the other property values blank.

  • In web.config file, Adjusted line 33 to set https for secure connection:

...