SSP Configuration Manager (SSPcm) Silent Install/Upgrade Example
In this scenario, assume that the user wants to build an appropriate installer.properties file to silently install the SSP Configuration Manager on Linux in the directory /data/SSPcm, and that the configuration should be encrypted using the passphrase “mypassphrase”.
Additionally, the user wants to build the installer.properties file on a Windows platform to be used to silently install/upgrade SSPcm on Linux.
Building installer.properties for SSP Configuration Manager
-
In a CMD prompt, navigate to the directory where the SSP Configuration Manager installer is located (e.g. c:\download\SSPcm).
-
Enter:
Windows_X64\SSPcm.V6010.Win_X64.exe -r C:\download\SSPcm - The user completes a fresh install or upgrade and the responses are recorded in an output file in the named directory.
# Tue Sep 27 12:18:53 CDT
2016
# Replay feature output
# ---------------------
# This file was built by the Replay feature
of InstallAnywhere.
# It contains variables that were set by
Panels, Consoles or Custom Code.
#Indicate whether the license agreement
been accepted
#----------------------------------------------------
LICENSE_ACCEPTED=TRUE
#Choose Installation
Folder
#--------------------------
USER_INSTALL_DIR=C:\\Program
Files\\Sterling Commerce\\SSPcm
#Specify Configuration Manager Listen
Port
#-----------------------------------------
PORT=62366
#Specify Passphrase
#------------------
PASSPHRASE=
PASSPHRASE1=
#Specify Web Server Port
#-----------------------
JETTY_PORT=8443
#Install
#-------
:Edit installer.properties file
-
Add as the first line:
INSTALLER_UI=silent
-
Change USER_INSTALL_DIR
USER_INSTALL_DIR=/data/SSPcm
For a Windows installation (or upgrade) use double backslashes (\\).
-
Add the desired passphrase (both PASSPHRASE and PASSPHRASE1 must match)
All the data after the #Install should be deleted.
Edited installer.properties file example:
INSTALLER_UI=silent
# Tue Sep 27 12:18:53 CDT
2016
# Replay feature output
# ---------------------
# This file was built by the Replay feature
of InstallAnywhere.
# It contains variables that were set by
Panels, Consoles or Custom Code.
#Indicate whether the license agreement
been accepted
#----------------------------------------------------
LICENSE_ACCEPTED=TRUE
#Choose Installation
Folder
#--------------------------
USER_INSTALL_DIR=\data\SSPcm
#Specify Configuration Manager Listen
Port
#-----------------------------------------
PORT=62366
#Specify Passphrase
#------------------
PASSPHRASE=mypassphrase
PASSPHRASE1=mypassphrase
#Specify Web Server Port
#-----------------------
JETTY_PORT=8443
#Install