Full Installer¶
The Qualtrak Coach Full Installer.
Description¶
The Qualtrak Coach Installer installs:
- Coach Web Application.
- Data Connector integration.
- IntelliSearch Windows Services (Producer and Consumer).
- TLM (Tenant and Licensing management & real-time Monitoring) Web App and Windows Service.
- Akka Coach Seed Windows Service
- Coach REST API (C# Wrapper)[Optional].
Warning
Please make sure to backup all your data before running Qualtrak Coach Installer to make sure of no data loss!
Usage¶
Note
Use config.ps1 to set up Coach Full Installer to meet desired needs.
Get Help for Qualtrak Coach Installer Cmdlet
Install-CoachFullGet-Help Install-CoachFull -Full Install-CoachFull -?
Run
Install-CoachFullto install Coach. See “Examples” for more info or usage.
Examples¶
Note
- See more info about
Install-CoachFullparameters in “Parameters” section. - Please use single quotes (‘’) around parameter values, double quotes (“”) values evaluate as Powershell statement, so it can have undesired effect!
Minimal command with usage of required parameter
DbPasswd. If omitted, user will be prompted to enter manually:Install-CoachFull -DbPasswd '$ecReT'
Full example with all parameters. Note that -SysPasswd is only needed for first-install of Coach.:
Install-CoachFull -DbSrv 'srv\ins' -DbUsr 'admin' -DbPasswd '$ecReT' -RecorderIP '10.0.0.1' -SysPasswd 'P@$$w0rd' -HA -StartingPort 9000
Parameters¶
Note
- Please use single quotes (‘’) around parameter values, double quotes (“”) values evaluate as Powershell statement, so it can have undesired effect!
- If
AspireUser(Coach database User) is used asDbUsrparameter or$global:dbLoginNameproperty is set inconfig.ps1then in Coach database connection stringDbPasswdparameter value will be used, overriding default Coach database connection string password value.
DbSrv¶
- Specifies the SQL Server database serverinstance.
- General default value can be changed in
config.ps1for property$dbInstanceNameit is by default set to.\SQLEXPRESS.
Note
DbSrvparameter will always overrideconfig.ps1property$global:dbInstanceName!- If you want to use general default value use
config.ps1property$global:dbInstanceName, if it is changeable use thisDbSrvParameter.
DbUsr¶
- Specifies the SQL Server database serverinstance user login name.
- This value is not persisted or saved in any way, it is only for lifetime of installation session. Unless user used is
AspireUserwhich is Coach database user used in connection string. - General default value can be changed in
config.ps1for property$global:dbLoginNameit is by default set to$null.
Note
DbUsrparameter will always overrideconfig.ps1property$global:dbLoginName!- If you want to use general default value use
config.ps1property$global:dbLoginName, if it is changeable use thisDbUsrParameter.
DbPasswd¶
- Specifies the SQL Server database serverinstance password.
- This value is not persisted or saved in any way, it is only for lifetime of installation session. Unless
DbUsrparameter value isAspireUserwhich is default Coach database user used in connection string. ThenDbPasswdvalue will override default password for Cocah database connection string. - Required.
Note
- If not specified will stop script and wait for
DbPasswdenter manually in prompt! - If
DbPasswdvalue is whitespace it will terminate the script!
RecorderIP¶
- Specifies the Recorder IP address with any valid IP Address or DNS name.
- General default value can be changed in
config.ps1for property$global:recorderIpAddressit is by default set tolocalhost.
Note
- If
RecorderIPparameter will always overrideconfig.ps1propertyglobal:$recorderIpAddress! - If you want to use general default value use
config.ps1property$global:recorderIpAddress, if it is changeable use thisRecorderIPParameter.
SysPasswd¶
- Specifies the Coach System Administrator password.
- It is required on Coach first-install.
Note
- If not specified on Coach first-install it will stop script and wait for
SysPasswdenter manually in prompt! - If
SysPasswdvalue is empty or whitespace it will terminate the script! - If used on Coach release update will display warning, because in that case
SysPasswdwill be completely ignored by install.
HA¶
- Tells to installer that this is HA installation and sometimes in combination with
StartingPortwhen there is need for sliding number for ports in HA. - If used then will set installer to be in a HA mode, if not it will do normal Single Server install.
StartingPort¶
- Only usable with
HAswitch and in HA mode. - Specifies the starting port and it can be used to set sliding ports when multiple installers used in multiple VM’s.
- Sliding port means each HA VM’s with Coach components needs unique port number(s).
- Default value can be changed in
config.ps1for property$global:startingPortit is by default set to9000.
Note
- If
StartingPortparameter will always overrideconfig.ps1property$global:startingPort! - If you want to use general default value use
config.ps1property$global:startingPort, if it is changeable use thisStartingPortParameter.