Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

IoT Data Processing Agent Deployment

Shreekantha Devasya edited this page May 19, 2020 · 1 revision

Configuration Note

For more configuration settings please see: IoT agents configuration

Docker

Run Agent with existing broker

Dependencies

  • Docker
  • MQTT Broker

Terminal

docker run -e connection_broker_mqtt_hostname=<my-mqtt-hostname/IP> -p 8319:8319 linksmart/la:latest

Run Agent without an existing broker

Dependencies

  • Docker

Terminal

docker run --detach --name mqtt-broker -p 1883:1883 eclipse-mosquitto
docker run -e connection_broker_mqtt_hostname=mqtt-broker -p 8319:8319 linksmart/la:latest

Native Java

See Getting Started Native Java