Rules of Compatibility Between ThingsBoard Edge and ThingsBoard Server Versions:
A ThingsBoard Edge version X.Y.Z is compatible with the same ThingsBoard Server version X.Y.Z and any later versions.
A ThingsBoard Edge version X.Y.Z is NOT compatible with ThingsBoard Server versions preceding X.Y.Z.
Example: ThingsBoard Edge version 3.3.4.1 is compatible with ThingsBoard Server version 3.3.4.1 and subsequent versions (3.4.0, 3.4.1, …). However, ThingsBoard Edge version 3.4.0 is NOT compatible with ThingsBoard Server version 3.3.4.1 or any prior versions (3.3.4, 3.3.3, …). In such scenarios, ThingsBoard Server 3.3.4.1 or a preceding version must first be upgraded to ThingsBoard Server 3.4.0 or a later version.
Please ensure that the ThingsBoard Server is updated to the latest version before proceeding.
This guide will help you to install and start ThingsBoard Edge using Docker on Linux or Mac OS.
Prerequisites
To start running ThingsBoard Edge, you will need an active ThingsBoard account that supports Edge functionality.
Sign up for a ThingsBoard Cloud account, which is the easiest way to get started. Throughout the rest of this tutorial, this URL will be referred to as SERVER_URL
Log in using your ThingsBoard Cloud tenant credentials.
The local server can be accessed via http://localhost:8080. Throughout this tutorial, we will refer to this URL as SERVER_URL. Log in with:
Username: tenant@thingsboard.org
Password: tenant
Edge Hardware Requirements
The hardware requirements for ThingsBoard Edge are determined by the number of connected devices and the intensity of interactions with the platform interface.
To ensure optimal performance, we recommend the following:
At least 1GB of RAM (Light workload): It is suitable for minimal interactions with the platform interface, such as dashboards and device management, and fewer than 100 connected devices.
At least 4GB of RAM (Heavy workload): This configuration is suitable for intense platform interactions and 100+ devices connected to a single machine.
Deploying a New Edge Instance
To create a new Edge:
Sign in to your ThingsBoard PE instance and navigate to the Edge Management > Instances section. Click the ”+” icon in the top right corner and select the “Add new edge” option.
Enter a name for the Edge you are creating. For example, “My New Edge”. If needed, update the cloud endpoint.
If the Edge runs in a Docker container, do not use “localhost” as the endpoint. Instead, use the IP address of the machine where ThingsBoard PE is hosted and accessible by the Edge container. For example, http://10.7.2.143:8080.
If you are using the ThingsBoard Cloud, there’s no need to change this setting — keep it as is.
Click the “Add” button to confirm the addition of the Edge instance.
Your new Edge is created and will appear at the top of the list, as entries are sorted by creation time by default.
Sign in to your ThingsBoard PE instance and navigate to the Edge Management > Instances section. Click the ”+” icon in the top right corner and select the “Add new edge” option.
Enter a name for the Edge you are creating. For example, “My New Edge”. If needed, update the cloud endpoint.
If the Edge runs in a Docker container, do not use “localhost” as the endpoint. Instead, use the IP address of the machine where ThingsBoard PE is hosted and accessible by the Edge container. For example, http://10.7.2.143:8080.
If you are using the ThingsBoard Cloud, there’s no need to change this setting — keep it as is.
Click the “Add” button to confirm the addition of the Edge instance.
Your new Edge is created and will appear at the top of the list, as entries are sorted by creation time by default.
Guided Installation Using ThingsBoard Server Pre-configured Instructions
Once the Edge instance has been created, the installation instructions will be available for use.
Each Edge has preset configurations that contain important credentials, such as Edge Secret, Edge Key, etc. To access these configurations:
Click on the Edge entity to open its details.
Click the “Install & Connection Instructions” button.
Follow the instructions to install Edge and connect it to the server.
Click on the Edge entity to open its details.
Click the “Install & Connection Instructions” button.
Follow the instructions to install Edge and connect it to the server.
Manual Installation and Configuration
If for any reason you are unable to use the prepared ThingsBoard Server Instructions above, please follow the steps below.
These steps will guide you through installing and configuring the Edge by yourself.
Click on Copy Edge Key and Copy Edge Secret in the edge details section.
This will copy your edge credentials to your clipboard.
Be sure to store them in a secure location, as these values will be needed in the following steps.
Step 2. Choose Queue and/or Database Services
ThingsBoard Edge is able to use different messaging systems/brokers for storing the messages and communication between ThingsBoard services. How to choose the right queue implementation?
In Memory queue implementation is built-in and default. It is useful for development(PoC) environments and is not suitable for production deployments or any sort of cluster deployments.
Kafka is recommended for production deployments. This queue is used on the most of ThingsBoard production environments now.
Hybrid implementation combines PostgreSQL and Cassandra databases with Kafka queue service. It is recommended if you plan to manage 1M+ devices in production or handle high data ingestion rate (more than 5000 msg/sec).
Create a docker compose file for the ThingsBoard Edge service:
version:'3.8'services:mytbedge:restart:alwaysimage:"thingsboard/tb-edge-pe:3.9.0EDGEPE"ports:-"8080:8080"-"1883:1883"-"5683-5688:5683-5688/udp"environment:SPRING_DATASOURCE_URL:jdbc:postgresql://postgres:5432/tb-edgeEDGE_LICENSE_INSTANCE_DATA_FILE:/data/instance-edge-license.dataCLOUD_ROUTING_KEY:PUT_YOUR_EDGE_KEY_HERE# e.g. 19ea7ee8-5e6d-e642-4f32-05440a529015CLOUD_ROUTING_SECRET:PUT_YOUR_EDGE_SECRET_HERE# e.g. bztvkvfqsye7omv9uxlpCLOUD_RPC_HOST:PUT_YOUR_CLOUD_IP# e.g. 192.168.1.1 or thingsboard.cloudCLOUD_RPC_SSL_ENABLED:'false'# set it to 'true' if you are connecting edge to thingsboard.cloud volumes:-tb-edge-data:/data-tb-edge-logs:/var/log/tb-edgepostgres:restart:alwaysimage:"postgres:15"ports:-"5432"environment:POSTGRES_DB:tb-edgePOSTGRES_PASSWORD:postgresvolumes:-tb-edge-postgres-data:/var/lib/postgresql/datavolumes:tb-edge-data:name:tb-edge-datatb-edge-logs:name:tb-edge-logstb-edge-postgres-data:name:tb-edge-postgres-data
Where:
restart: always - automatically start ThingsBoard Edge in case of system reboot and restart in case of failure;
8080:8080 - connect local port 8080 to exposed internal HTTP port 8080;
1883:1883 - connect local port 1883 to exposed internal MQTT port 1883;
5683-5688:5683-5688/udp - connect local UDP ports 5683-5688 to exposed internal COAP and LwM2M ports;
CLOUD_RPC_HOST - ip address of the machine with the ThingsBoard platform;
CLOUD_RPC_SSL_ENABLED - enable or disable SSL connection to server from edge.
Please set CLOUD_RPC_HOST with an IP address of the machine where ThingsBoard PE version is running:
DO NOT use ‘localhost’ - ‘localhost’ is the ip address of the edge service in the docker container.
Use thingsboard.cloud in case you are connecting edge to ThingsBoard Cloud.
NOTE: thingsboard.cloud uses SSL protocol for edge communication. Please change CLOUD_RPC_SSL_ENABLED to true as well.
Use X.X.X.X IP address in case edge is connecting to the cloud instance in the same network or in the docker.
If ThingsBoard Edge is set to run on the same machine where the ThingsBoard PE server is operating, you need to update additional configuration parameters to prevent port collision between the ThingsBoard server and ThingsBoard Edge.
Please update next lines of docker-compose.yml file: … ports: - “18080:8080” - “11883:1883” - “15683-15688:5683-5688/udp” …
Ensure that the ports listed above (18080, 11883, 15683-15688) are not being used by any other application.
Set the terminal in the directory which contains the docker-compose.yml file and execute the following commands to up this docker compose directly:
1
2
docker compose up -d
docker compose logs -f mytbedge
ThingsBoard supports Docker Compose V2 (Docker Desktop or Compose plugin) starting from 3.4.2 release, because docker-compose as standalone setup is no longer supported by Docker.
We strongly recommend to update to Docker Compose V2 and use it.
If you still rely on using Docker Compose as docker-compose (with a hyphen), then please execute the following commands to start ThingsBoard: docker-compose up -d docker-compose logs -f mytbedge
Apache Kafka is an open source stream processing software platform.
Create docker compose file for the ThingsBoard Edge service:
1
nano docker-compose.yml
Add the following lines to the docker-compose.yml file:
version:'3.8'services:mytbedge:restart:alwaysimage:"thingsboard/tb-edge-pe:3.9.0EDGEPE"ports:-"8080:8080"-"1883:1883"-"5683-5688:5683-5688/udp"environment:SPRING_DATASOURCE_URL:jdbc:postgresql://postgres:5432/tb-edgeEDGE_LICENSE_INSTANCE_DATA_FILE:/data/instance-edge-license.dataCLOUD_ROUTING_KEY:PUT_YOUR_EDGE_KEY_HERE# e.g. 19ea7ee8-5e6d-e642-4f32-05440a529015CLOUD_ROUTING_SECRET:PUT_YOUR_EDGE_SECRET_HERE# e.g. bztvkvfqsye7omv9uxlpCLOUD_RPC_HOST:PUT_YOUR_CLOUD_IP# e.g. host.docker.internal, 192.168.1.1 or thingsboard.cloud, etc.CLOUD_RPC_SSL_ENABLED:'false'# set it to 'true' if you are connecting edge to thingsboard.cloudTB_QUEUE_TYPE:"kafka"TB_KAFKA_SERVERS:"kafka:9092"volumes:-tb-edge-data:/data-tb-edge-logs:/var/log/tb-edgeextra_hosts:-"host.docker.internal:host-gateway"postgres:restart:alwaysimage:"postgres:15"ports:-"5432"environment:POSTGRES_DB:tb-edgePOSTGRES_PASSWORD:postgresvolumes:-tb-edge-postgres-data:/var/lib/postgresql/datakafka:restart:alwaysimage:bitnami/kafka:3.8.1ports:-9092:9092#to localhost:9092 from host machine-9093#for Kraft-9094#to kafka:9094 from within Docker networkenvironment:ALLOW_PLAINTEXT_LISTENER:"yes"KAFKA_CFG_LISTENERS:"OUTSIDE://:9092,CONTROLLER://:9093,INSIDE://:9094"KAFKA_CFG_ADVERTISED_LISTENERS:"OUTSIDE://localhost:9092,INSIDE://kafka:9094"KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP:"INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT,CONTROLLER:PLAINTEXT"KAFKA_CFG_INTER_BROKER_LISTENER_NAME:"INSIDE"KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE:"false"KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR:"1"KAFKA_TRANSACTION_STATE_LOG_MIN_ISR:"1"KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR:"1"KAFKA_CFG_PROCESS_ROLES:"controller,broker"#KRaftKAFKA_CFG_NODE_ID:"0"#KRaftKAFKA_CFG_CONTROLLER_LISTENER_NAMES:"CONTROLLER"#KRaftKAFKA_CFG_CONTROLLER_QUORUM_VOTERS:"0@kafka:9093"#KRaftvolumes:-kafka-data:/bitnamivolumes:tb-edge-data:name:tb-edge-datatb-edge-logs:name:tb-edge-logstb-edge-postgres-data:name:tb-edge-postgres-datakafka-data:driver:local
Where:
restart: always - automatically start ThingsBoard Edge in case of system reboot and restart in case of failure;
8080:8080 - connect local port 8080 to exposed internal HTTP port 8080;
1883:1883 - connect local port 1883 to exposed internal MQTT port 1883;
5683-5688:5683-5688/udp - connect local UDP ports 5683-5688 to exposed internal COAP and LwM2M ports;
CLOUD_RPC_HOST - ip address of the machine with the ThingsBoard platform;
CLOUD_RPC_SSL_ENABLED - enable or disable SSL connection to server from edge.
Please set CLOUD_RPC_HOST with an IP address of the machine where ThingsBoard PE version is running:
DO NOT use ‘localhost’ - ‘localhost’ is the ip address of the edge service in the docker container.
Use thingsboard.cloud in case you are connecting edge to ThingsBoard Cloud.
NOTE: thingsboard.cloud uses SSL protocol for edge communication. Please change CLOUD_RPC_SSL_ENABLED to true as well.
Use X.X.X.X IP address in case edge is connecting to the cloud instance in the same network or in the docker.
If ThingsBoard Edge is set to run on the same machine where the ThingsBoard PE server is operating, you need to update additional configuration parameters to prevent port collision between the ThingsBoard server and ThingsBoard Edge.
Please update next lines of docker-compose.yml file: … ports: - “18080:8080” - “11883:1883” - “15683-15688:5683-5688/udp” …
Ensure that the ports listed above (18080, 11883, 15683-15688) are not being used by any other application.
Set the terminal in the directory which contains the docker-compose.yml file and execute the following commands to up this docker compose directly:
1
2
docker compose up -d
docker compose logs -f mytbedge
ThingsBoard supports Docker Compose V2 (Docker Desktop or Compose plugin) starting from 3.4.2 release, because docker-compose as standalone setup is no longer supported by Docker.
We strongly recommend to update to Docker Compose V2 and use it.
If you still rely on using Docker Compose as docker-compose (with a hyphen), then please execute the following commands to start ThingsBoard: docker-compose up -d docker-compose logs -f mytbedge
Apache Cassandra is an open source NoSQL database designed to manage massive amounts of data.
Apache Kafka is an open source stream processing software platform.
Create docker compose file for the ThingsBoard Edge service:
1
nano docker-compose.yml
Add the following lines to the docker-compose.yml file:
version:'3.8'services:mytbedge:restart:alwaysimage:"thingsboard/tb-edge-pe:3.9.0EDGEPE"ports:-"8080:8080"-"1883:1883"-"5683-5688:5683-5688/udp"environment:SPRING_DATASOURCE_URL:jdbc:postgresql://postgres:5432/tb-edgeEDGE_LICENSE_INSTANCE_DATA_FILE:/data/instance-edge-license.dataCLOUD_ROUTING_KEY:PUT_YOUR_EDGE_KEY_HERE# e.g. 19ea7ee8-5e6d-e642-4f32-05440a529015CLOUD_ROUTING_SECRET:PUT_YOUR_EDGE_SECRET_HERE# e.g. bztvkvfqsye7omv9uxlpCLOUD_RPC_HOST:PUT_YOUR_CLOUD_IP# e.g. 192.168.1.1 or demo.thingsboard.ioCLOUD_RPC_SSL_ENABLED:'false'# set it to 'true' if you are connecting edge to thingsboard.cloudTB_QUEUE_TYPE:"kafka"TB_KAFKA_SERVERS:"kafka:9092"DATABASE_TS_TYPE:"cassandra"CASSANDRA_URL:"cassandra:9042"volumes:-tb-edge-data:/data-tb-edge-logs:/var/log/tb-edgeextra_hosts:-"host.docker.internal:host-gateway"postgres:restart:alwaysimage:"postgres:15"ports:-"5432"environment:POSTGRES_DB:tb-edgePOSTGRES_PASSWORD:postgresvolumes:-tb-edge-postgres-data:/var/lib/postgresql/datakafka:restart:alwaysimage:bitnami/kafka:3.8.1ports:-9092:9092#to localhost:9092 from host machine-9093#for Kraft-9094#to kafka:9094 from within Docker networkenvironment:ALLOW_PLAINTEXT_LISTENER:"yes"KAFKA_CFG_LISTENERS:"OUTSIDE://:9092,CONTROLLER://:9093,INSIDE://:9094"KAFKA_CFG_ADVERTISED_LISTENERS:"OUTSIDE://localhost:9092,INSIDE://kafka:9094"KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP:"INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT,CONTROLLER:PLAINTEXT"KAFKA_CFG_INTER_BROKER_LISTENER_NAME:"INSIDE"KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE:"false"KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR:"1"KAFKA_TRANSACTION_STATE_LOG_MIN_ISR:"1"KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR:"1"KAFKA_CFG_PROCESS_ROLES:"controller,broker"#KRaftKAFKA_CFG_NODE_ID:"0"#KRaftKAFKA_CFG_CONTROLLER_LISTENER_NAMES:"CONTROLLER"#KRaftKAFKA_CFG_CONTROLLER_QUORUM_VOTERS:"0@kafka:9093"#KRaftvolumes:-kafka-data:/bitnamicassandra:restart:alwaysimage:cassandra:4.0container_name:cassandraenvironment:CASSANDRA_CLUSTER_NAME:"ThingsboardEdgeCluster"CASSANDRA_KEYSPACE_NAME:"tb_edge"CASSANDRA_LOCAL_DATACENTER:"datacenter1"ports:-9042:9042volumes:-./data/cassandra:/var/lib/cassandranetworks:-cassandra-networkvolumes:tb-edge-data:name:tb-edge-datatb-edge-logs:name:tb-edge-logstb-edge-postgres-data:name:tb-edge-postgres-datakafka-data:driver:localnetworks:cassandra-network:driver:bridge
Where:
restart: always - automatically start ThingsBoard Edge in case of system reboot and restart in case of failure;
8080:8080 - connect local port 8080 to exposed internal HTTP port 8080;
1883:1883 - connect local port 1883 to exposed internal MQTT port 1883;
5683-5688:5683-5688/udp - connect local UDP ports 5683-5688 to exposed internal COAP and LwM2M ports;
CLOUD_RPC_HOST - ip address of the machine with the ThingsBoard platform;
CLOUD_RPC_SSL_ENABLED - enable or disable SSL connection to server from edge.
Please set CLOUD_RPC_HOST with an IP address of the machine where ThingsBoard PE version is running:
DO NOT use ‘localhost’ - ‘localhost’ is the ip address of the edge service in the docker container.
Use thingsboard.cloud in case you are connecting edge to ThingsBoard Cloud.
NOTE: thingsboard.cloud uses SSL protocol for edge communication. Please change CLOUD_RPC_SSL_ENABLED to true as well.
Use X.X.X.X IP address in case edge is connecting to the cloud instance in the same network or in the docker.
If ThingsBoard Edge is set to run on the same machine where the ThingsBoard PE server is operating, you need to update additional configuration parameters to prevent port collision between the ThingsBoard server and ThingsBoard Edge.
Please update next lines of docker-compose.yml file: … ports: - “18080:8080” - “11883:1883” - “15683-15688:5683-5688/udp” …
Ensure that the ports listed above (18080, 11883, 15683-15688) are not being used by any other application.
Set the terminal in the directory which contains the docker-compose.yml file and execute the following commands to up this docker compose directly:
1
2
docker compose up -d
docker compose logs -f mytbedge
ThingsBoard supports Docker Compose V2 (Docker Desktop or Compose plugin) starting from 3.4.2 release, because docker-compose as standalone setup is no longer supported by Docker.
We strongly recommend to update to Docker Compose V2 and use it.
If you still rely on using Docker Compose as docker-compose (with a hyphen), then please execute the following commands to start ThingsBoard: docker-compose up -d docker-compose logs -f mytbedge
If the Edge HTTP bind port was changed to 18080 during Edge installation, access the ThingsBoard Edge instance at http://localhost:18080.
Please use your tenant credentials from local Server instance or ThingsBoard Cloud to log in to the ThingsBoard Edge.
Step 4. Detaching, Stop and Start Commands
You can detach from session terminal using Ctrl-pCtrl-q key sequence - the container will keep running in the background.
In case of any issues you can examine service logs for errors.
For example to see ThingsBoard Edge container logs execute the following command:
1
docker compose logs -f mytbedge
To stop the container:
1
docker compose stop mytbedge
To start the container:
1
docker compose start mytbedge
Docker Compose as docker-compose (with a hyphen) is deprecated. It is recommended to use Docker Compose V2 instead. If you still rely on docker compose as standalone here is the list of the above commands: docker-compose logs -f mytbedge docker-compose stop mytbedge docker-compose start mytbedge
Troubleshooting
DNS issues
NOTE If you observe errors related to DNS issues, for example
1
127.0.1.1:53: cannot unmarshal DNS message
You may configure your system to use Google public DNS servers.
See corresponding Linux and Mac OS instructions.
Next Steps
Congratulations! You have successfully provisioned, installed and connected ThingsBoard Edge to ThingsBoard server.
You can continue with Getting started guide to get the basic knowledge of ThingsBoard Edge or you can jump directly to more advanced topics:
Getting started guide - Provide quick overview of main ThingsBoard Edge features. Designed to be completed in 15-30 minutes: