...
Tip | ||
---|---|---|
| ||
|
Let's start configuring the Key Manager nodeworker nodes.
Configure the
HostName
andMgtHostName
properties in the<IOTS_HOME>/conf/carbon.xml
file as shown below.Code Block <HostName>iots310.wso2.com</HostName> <MgtHostName>mgt.iots310.wso2.com</MgtHostName>
Note Make sure to have the
Offset
property configured to zero. If it is set to a value other than zero, you need to update the NGINX configuration based on the port offset.Configure the
<IOTS_HOME>/bin/iot-server.sh
file as shown below:Code Block -Diot.manager.host="mgt.iots310.wso2.com" \ -Diot.manager.https.port="443" \ -Diot.core.host="iots310.wso2.com" \ -Diot.core.https.port="443" \ -Diot.keymanager.host="keymgt.iots310.wso2.com" \ -Diot.keymanager.https.port="443" \ -Diot.gateway.host="gateway.iots310.wso2.com" \ -Diot.gateway.https.port="443" \ -Diot.gateway.http.port="80" \ -Diot.gateway.carbon.https.port="443" \ -Diot.gateway.carbon.http.port="80" \ -Diot.apimpublisher.host="mgt.iots310.wso2.com" \ -Diot.apimpublisher.https.port="443" \ -Diot.apimstore.host="mgt.iots310.wso2.com" \ -Diot.apimstore.https.port="443" \
Disable task monitoring in the
android.xml
andwindows.xml
files that are in the<IOTS_HOME>/repository/deployment/server/devicetypes
directory as shown below:Code Block <TaskConfiguration> <Enable>false</Enable> ……... </TaskConfiguration>
Enable API publishing in both the worker nodes by configuring the
<IOTS_HOME>/
conf/etc/webapp-publisher-config.xml
file as shown below:Info title Why is this needed? This is to publish the synapse configs to the
<IOTS_HOME>/repository/deployment/server/synapse-configs/default/api
directory. The configs are published when the server starts up. Therefore, disable this setting after the server finishes starting up.Code Block <PublishAPI>true</PublishAPI> <EnabledUpdateApi>true</EnabledUpdateApi>
Start the core profile of the WSO2 IoT Server.
Code Block cd <IOTS_HOME>/bin ./iot-server.sh
...