# Software Upgrade

# Upgrading through the Windows Installer Interface

  1. Double-click the installer file.

  2. The installer will notify that there is an older version already installed on the machine. Click Yes to continue or No to cancel.

    Ingress Upgrade Prompt

    Ingress Upgrade Prompt

  3. In the setup wizard, click Next.

    Welcome Screen

    Welcome Screen

  4. Read and accept the License Agreement, then click Next.

    End-User License Agreement

    End-User License Agreement

  5. Specify the installation directory. Click Change to set a different directory or click Next to use the default folder.

    Destination Folder

    Destination Folder

    Changing the Destination Folder

    Changing the Destination Folder

  6. Click Install to start the installation process.

    Alternatively, click Back to review any installation setting.

    Ready to Install

    Ready to Install

  7. The installer will set up all necessary files on the computer. Click Finish.

    Complete Installation

    Complete Installation

# Upgrading through the Command Line

  1. Open a command prompt with Administrator level privileges.

  2. Run the following command:

    Command Syntax
    msiexec /i <path_to_installer> /l*v <path_to_logfile> [/quiet] [/passive] <INSTALLDIR> <ENABLEHTTPS> <PORT> <SSLPORT> <CERTSTOREHOST> <CERTOPTION> <CERTCONFIG1> <CERTCONFIG2> <ACTIVATE_EVENTD> <START_EVENTD>
    Parameter Description
    /i Use this parameter for a normal installation
    <path_to_installer> Use this parameter to specify the path to the installer file
    /l*v Use this parameter to turn on logging of all information, including verbose output
    <path_to_logfile> Use this parameter to specify the path to the output log file
    /quiet Use this optional parameter to run the installation in silent mode, meaning no user interaction required
    /passive Use this optional parameter to run the installation in unattended mode, showing only a progress bar
    <INSTALLDIR> Use this optional property to specify the location where the Open iT files will be installed; the default path is C:\Program Files\OpeniT\Ingress
    <ENABLEHTTPS> Use this optional property to enable HTTPS; set the value to 1
    <PORT> Use this optional property to specify the port number when using HTTP; the default value is 8080
    <SSLPORT> Use this optional property to specify the port number when using HTTPS; the default value is 443
    <CERTSTOREHOST> Use this optional property to specify the hostname of the machine where the certificate is located
    <CERTOPTION> Use this optional property to specify the HTTPS configuration; the default value is 1 which configures HTTPS with an SSL certificate and key; set the value to 2 to configure HTTPS with Windows Certificate Store
    <CERTCONFIG1> Use this optional property to specify the path to the SSL certificate (if you opt for CERTOPTION="1") or the Certificate Store where your SSL certificate is stored (if you opt for CERTOPTION="2")
    <CERTCONFIG2> Use this optional property to specify the path to the SSL key (if you opt for CERTOPTION="1") or the store location (if you opt for CERTOPTION="2")
    <ACTIVATE_EVENTD> Use this optional property to enable (but not start) the websocket service for real-time events (OpeniTEventd); set the value to 1
    <START_EVENTD> Use this optional property to start the websocket service for real-time events (OpeniTEventd); set the value to 1

    Note: <ACTIVATE_EVENTD> is required when using this property.
    Command Parameters

# Examples

To upgrade to openit_ingress_1_0_1_x64.msi from C:\Installers in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default installation directory and SSL port number (HTTPS):

Example 1
msiexec /i "C:\Installers\openit_ingress_1_0_18_x64.msi" /l*v "C:\install.log" /passive

To upgrade to openit_ingress_1_0_18_x64.msi from C:\Installers in silent mode with all logging information stored in an output log file at C:\install.log, and using a preferred installation directory and default SSL port number (HTTPS):

Example 2
msiexec /i "C:\Installers\openit_ingress_1_0_18_x64.msi" /l*v "C:\install.log" /quiet INSTALLDIR="C:\OpeniTIngress"

To upgrade to openit_ingress_1_0_18_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default installation directory and 8081 as the port number (HTTP):

Example 3
msiexec /i "C:\Installers\openit_ingress_1_0_18_x64.msi" /l*v "C:\install.log" /passive PORT="8081"

To upgrade to openit_ingress_1_0_18_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default installation directory and default HTTPS settings using Windows Certificate Store:

Example 4
msiexec /i "C:\Installers\openit_ingress_1_0_18_x64.msi" /l*v "C:\install.log" /passive ENABLEHTTPS="1" CERTOPTION="2"

To upgrade to openit_ingress_1_0_18_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default installation directory, customized HTTPS settings using an SSL certificate and key, 4435 as the SSL port, and desktop_123win as the machine hostname where the certificate is located:

Example 5
msiexec /i "C:\Installers\openit_ingress_1_0_18_x64.msi" /l*v "C:\install.log" /passive ENABLEHTTPS="1" SSLPORT="4435" CERTSTOREHOST="desktop_123win" CERTOPTION="1" CERTCONFIG1="C:\OpeniT\certificate\sample.cert" CERTCONFIG2="C:\OpeniT\certificate\sample.key"

To upgrade to openit_ingress_1_0_18_x64.msi from C:\Installers in unattended mode with all logging information stored in an output log file at C:\install.log, and using the default installation directory and SSL port number (HTTPS) with a running websocket service for real-time events (OpeniTEventd):

Example 6
msiexec /i "C:\Installers\openit_ingress_1_0_18_x64.msi" /l*v "C:\install.log" /passive ACTIVATE_EVENTD="1" START_EVENTD="1"

# Upgrading through the Terminal

  1. Open a terminal with root user privileges.

  2. Run the following command:

    Command Syntax
    rpm -Uvh "<path_to_installer>"
    Parameter Description
    -Uvh Use this parameter to upgrade with verbose output and hash marks to show the upgrade progress
    <path_to_installer> Use this parameter to specify the path to the installer file
    Command Parameters

# Example

To upgrade to openit-ingress-1.0.18-0.x86_64.rpm from /root/Installers/:

Example
rpm -Uvh "/root/Installers/openit-ingress-1.0.18-0.x86_64.rpm"

We value your feedback!

Please take a few minutes to complete our survey and share your thoughts on your recent experience with our documentation.

Take survey

Close