Shamit Jain
Shamit Jain

Reputation: 21

wso2 iot server 3.0.0 device management console not working

When I am trying to open the device management console, it redirect be to the below page and after that nothing would happened when i click on the re-direct button, please suggets, I am using wso2 IOT server 3.0.0 and have started all three modules broker, core and analytics...

enter image description here

With http below logs printed on console.

enter image description here

Upvotes: 1

Views: 1283

Answers (2)

exterminator
exterminator

Reputation: 260

There is an issue when running on Windows and inorder to make it work, we need to start the server with below command.

wso2server.bat -Diot.analytics.host="localhost" -Diot.analytics.https.port="9445" -Dmqtt.broker.host="localhost" -Dmqtt.broker.port="1886" -Diot.core.host="localhost" -Diot.core.https.port="9443" -Diot.keymanager.host="localhost" -Diot.keymanager.https.port="9443" -Diot.gateway.host="localhost" -Diot.gateway.https.port="8243" -Diot.gateway.http.port="8280"

if you are running the above command in an existing pack that you have already started then you might need to enable UpdateAPI(set true to EnableUpdateApi) property in webapp-publisher-config.xml in core/repository/conf/etc directory.

Upvotes: 1

Bee
Bee

Reputation: 12512

This can happen if iot.keymanager.host environment variable is not set properly. By default this is set in wso2server.bat file. Check if it's set properly.

Upvotes: 1

Related Questions