Upgrade
- Windows
- Unix
Upgrading through the Windows Installer Interface
Step 1: Launch the Installer
-
Double-click the installer file.
-
The installer will notify that there is an older version already installed on the machine. Click Yes to continue or No to cancel.
-
In the setup wizard, click Next.
Welcome Screen
Step 2: Review the License Agreement
-
Read and accept the License Agreement, then click Next.
End-User License Agreement
Step 3: Select the Installation Directory
-
Specify the installation directory.
-
Click Change to set a different directory.
- Click Next to continue.
Step 4: Start the Installation
-
Click Install to start the installation process.
Alternatively, click Back to review any installation setting.
Ready to Install
-
If prompted by Windows User Account Control (UAC), click Yes to allow the installer to proceed.
The installer will set up all necessary files on the computer.
Step 5: Complete the Installation
-
Click Finish to exit the installer.
Complete Installation
Upgrading through the Command Line
Step 1: Open Command Prompt
- Open a command prompt with Administrator level privileges.
Step 2: Execute the Installation Command
-
Execute the following command:
Command Syntaxmsiexec /i <path_to_installer> /l*v <path_to_logfile> [/quiet] [/passive] <INSTALLDIR> <ENABLEHTTPS> <PORT> <SSLPORT> <CERTSTOREHOST> <CERTOPTION> <CERTCONFIG1> <CERTCONFIG2>Parameter Description /iUse this parameter for a normal installation <path_to_installer>Use this parameter to specify the path to the installer file /l*vUse 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 /quietUse this optional parameter to run the installation in silent mode, meaning no user interaction required /passiveUse 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 specify whether the installation uses HTTPS or HTTP. The default value is 1, which enables HTTPS. Set the value to 0 to use HTTP. <PORT>Use this optional property to specify a custom HTTP port when ENABLEHTTPS=0. IfENABLEHTTPS=0is specified withoutPORT, the default HTTP port 8080 is used.<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 forCERTOPTION="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 forCERTOPTION="2")Command Parameters
noteThe installation will use the default directories and port number if these properties are unspecified.
Also, the installer will use the Windows Installer Interface if the process mode (
/quietor/passive) is unspecified.
Step 3: Verify Installation Completion
-
If using passive mode, wait until the progress bar disappears.
-
If using quiet mode, verify installation by:
- Opening Task Manager
- Checking the Details tab
- Ensuring the
msiexecprocess is no longer running
Examples
To upgrade to openit_ingress_10_3_500_0000_x64.msi from C:\Installers in unattended mode with all logging information stored in an output log file at C:\upgrade.log, and using the default installation directory and SSL port number (HTTPS):
msiexec /i "C:\Installers\openit_ingress_10_3_500_0000_x64.msi" /l*v "C:\upgrade.log" /passive
To upgrade to openit_ingress_10_3_500_0000_x64.msi from C:\Installers in silent mode with all logging information stored in an output log file at C:\upgrade.log, and using a preferred installation directory and default SSL port number (HTTPS):
msiexec /i "C:\Installers\openit_ingress_10_3_500_0000_x64.msi" /l*v "C:\upgrade.log" /quiet INSTALLDIR="C:\OpeniTIngress"
To upgrade openit_ingress_10_3_500_0000_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\upgrade.log, and using the default installation directory and 8080 as the HTTP port number:
msiexec /i "C:\Installers\openit_ingress_10_3_500_0000_x64.msi" /l*v "C:\upgrade.log" /passive ENABLEHTTPS=0
To upgrade to openit_ingress_10_3_500_0000_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\upgrade.log, and using the default installation directory and 8081 as the port number (HTTP):
msiexec /i "C:\Installers\openit_ingress_10_3_500_0000_x64.msi" /l*v "C:\upgrade.log" /passive ENABLEHTTPS=0 PORT="8081"
To upgrade to openit_ingress_10_3_500_0000_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\upgrade.log, and using the default installation directory and default HTTPS settings using Windows Certificate Store:
msiexec /i "C:\Installers\openit_ingress_10_3_500_0000_x64.msi" /l*v "C:\upgrade.log" /passive ENABLEHTTPS="1" CERTOPTION="2"
To upgrade to openit_ingress_10_3_500_0000_x64.msi from C:\Installers, in unattended mode with all logging information stored in an output log file at C:\upgrade.log, and using the default installation directory, customized HTTPS settings using an SSL certificate and key, 4435 as the SSL port, and WIN-HOST01 as the machine hostname where the certificate is located:
msiexec /i "C:\Installers\openit_ingress_10_3_500_0000_x64.msi" /l*v "C:\upgrade.log" /passive ENABLEHTTPS="1" SSLPORT="4435" CERTSTOREHOST="WIN-HOST01" CERTOPTION="1" CERTCONFIG1="C:\OpeniT\certificate\sample.cert" CERTCONFIG2="C:\OpeniT\certificate\sample.key"
- When using the passive mode, wait until the process bar dialog disappears.
- When using the quiet mode, verify that the installation is complete by opening the Task Manager and checking in the Details tab if the msiexec process is still running.
Upgrading through the Terminal
-
Open a terminal with root user privileges.
-
Run the following command:
Command Syntaxrpm -Uvh "<path_to_installer>"Parameter Description -UvhUse 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-10.3.500.0000-0.x86_64.rpm from /root/Installers/:
rpm -Uvh "/root/Installers/openit-ingress-10.3.500.0000-0.x86_64.rpm"