Skip to main content

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.

    tip

    Override files are used to store custom or environment-specific configuration changes separately from the default configuration. This approach helps preserve the original settings, simplifies upgrades, and ensures that custom modifications are not accidentally overwritten.

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://WIN-HOST01: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://WIN-HOST01: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://WIN-HOST01: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://WIN-HOST01:8080",
    "checkSslValidity": false
    }
  3. Save the changes.