Skip to main content
Version: 10.2

Prerequisite

Keeping the Original Settings

Starting Open iT version 10.2, Ingress will be set to HTTPS by default. If you prefer to maintain the original HTTP settings, follow these instructions before upgrading:

  1. Go to the Open iT Ingress Configuration directory, which is by default in C:\Program Files\OpeniT\Ingress\Configuration.

  2. Create a copy of SiteBindings.json and rename the duplicate file to SiteBindings.Override.json.

Updating the Applications' Connection with Ingress

Suppose you want to use the new HTTPS configuration for Ingress. In that case, you need to update the ingress.json file of the installed applications to update their connection with Ingress.

Core Server

  1. Open ingress.json file in the Core Server's Configuration directory, which is by default in C:\Program Files\OpeniT\Core\Configuration.

  2. Change the checkSslValidity value to false.

    ingress.json
    {
    "uri": "http://localhost:8080",
    "checkSslValidity": false
    }
  3. Save the changes.

Analysis Server

  1. Open ingress.json file in the Analysis Server's Configuration directory, which is by default in C:\Program Files\OpeniT\Analysis Server\Configuration.

  2. Change the checkSslValidity value to false.

    ingress.json
    {
    "uri": "http://localhost:8080",
    "checkSslValidity": false
    }
  3. Save the changes.

CLIMS

  1. Open ingress.json file in the CLIMS Server's Configuration directory, which is by default in C:\Program Files\OpeniT\Zero\Configuration.

  2. Change the checkSslValidity value to false.

    ingress.json
    {
    "uri": "http://localhost:8080",
    "checkSslValidity": false
    }
  3. Save the changes.

Application Launcher

  1. Open ingress.json file in the App Launcher Server's Launcher directory, which is by default in C:\Program Files\OpeniT\Launcher.

  2. Change the checkSslValidity value to false.

    ingress.json
    {
    "uri": "http://localhost:8080",
    "checkSslValidity": false
    }
  3. Save the changes.