![]() |
If you plan to use an existing external instance of RabbitMQ or Apache Flink, instead of installing the components provided with the installer, those servers must be running during the Platform Analytics installation.
|
Launch Command Parameter
|
Description
|
||
---|---|---|---|
--baseinstalldir
|
The path to the directory where thePlatform Analyticswill be installed.
|
||
--THINGWORX_FOUNDATION_IP_ADDR
|
IP address or host name of yourThingWorxserver, which must already be installed and running.
|
||
--THINGWORX_FOUNDATION_PORT
|
The port for communicating with yourThingWorxserver.
|
||
--THINGWORX_APPKEY
|
The value from theKey IDfield of the application key you created inThingWorx.
|
||
--USE_SSL
|
Set totruein order to require the use of SSL when connecting toThingWorx. The default value isfalse.
|
||
--RABBIT_MQ_USER_NAME_NEW
|
A user name for the RabbitMQ component, if installing the instance included with the installer.
|
||
--RABBIT_MQ_PASSWORD_NEW
|
A password for the RabbitMQ component, if installing the instance included with the installer.
|
![]() |
An advanced option is available if you want to override the default user account during the installation. For more information about launching the installer with this option, see Change the User Account.
|
Action
|
Code Snippet
|
---|---|
To prevent Descriptive Analytics Microservice from installing
|
Add the following to the launch command:
--disable-components Descriptive_Services
|
To prevent Property Transform Microservice from installing
|
Add the following to the launch command:
--disable-components Property_Transform
|
To use an existing external RabbitMQ server instead of installing the instance included with the installer
|
Replace the following parameters in the installation command:
• --RABBIT_MQ_USER_NAME_NEW with --RABBIT_MQ_USER_NAME
• --RABBIT_MQ_PASSWORD_NEW with --RABBIT_MQ_PASSWORD
And add the following parameters:
• --disable-components rabbit_mq
• --RABBIT_MQ_IP_ADDR <RabbitMQ IP address or host name>
• --RABBIT_MQ_PORT_EXISTING <port where RabbitMQ is running>
• --RABBIT_MQ_VIRTUALHOST <virtual host for the existing RabbitMQ>
|
To use an existing external Flink cluster instead of installing the instance included with the installer
|
Add the following parameter to the installation command:
• --FLINK_IP_ADDR <IP address of an external Flink cluster>
• --FLINK_PORT <port where Flink is running>
• --disable-components flink
|
![]() |
If using existing instances of both RabbitMQ and Flink, you can combine the disable component tag as follows:
--disable-components rabbit_mq, flink
|