tb-cassandra
Single instance of ThingsBoard with Cassandra database
100K+
ThingsBoard is an open-source IoT platform for data collection, processing, visualization, and device management.
ThingsBoard documentation is hosted on thingsboard.io.
Before starting Docker container run following commands to create a directory for storing data and logs and then change its owner to docker container user, to be able to change user, chown command is used, which requires sudo permissions (command will request password for a sudo access):
$ mkdir -p ~/.mytb-data && sudo chown -R 799:799 ~/.mytb-data
$ mkdir -p ~/.mytb-logs && sudo chown -R 799:799 ~/.mytb-logs
Execute the following command to run this docker directly:
$ docker run -it -p 9090:9090 -p 1883:1883 -p 7070:7070 -p 5683-5688:5683-5688/udp -v ~/.mytb-data:/data -v ~/.mytb-logs:/var/log/thingsboard --name mytb --restart always thingsboard/tb-cassandra
Where:
docker run - run this container-it - attach a terminal session with current ThingsBoard process output-p 9090:9090 - connect local port 9090 to exposed internal HTTP port 9090-p 1883:1883 - connect local port 1883 to exposed internal MQTT port 1883-p 7070:7070 - connect local port 7070 to exposed internal Edge RPC port 7070-p 5683-5688:5683-5688/udp - connect local UDP ports 5683-5688 to exposed internal COAP and LwM2M ports-v ~/.mytb-data:/data - mounts the host's dir ~/.mytb-data to ThingsBoard DataBase data directory-v ~/.mytb-logs:/var/log/thingsboard - mounts the host's dir ~/.mytb-logs to ThingsBoard logs directory--name mytb - friendly local name of this machine--restart always - automatically start ThingsBoard in case of system reboot and restart in case of failure.thingsboard/tb-cassandra - docker imageAfter executing this command you can open http://{yor-host-ip}:9090 in you browser. You should see ThingsBoard login page.
Use the following default credentials:
You can always change passwords for each account in account profile page.
You can detach from session terminal with Ctrl-p Ctrl-q - the container will keep running in the background.
To reattach to the terminal (to see ThingsBoard logs) run:
$ docker attach mytb
To stop the container:
$ docker stop mytb
To start the container:
$ docker start mytb
In order to update to the latest image, execute the following commands:
$ docker pull thingsboard/tb-cassandra
$ docker stop mytb
$ docker run -it -v ~/.mytb-data:/data --rm thingsboard/tb-cassandra upgrade-tb.sh
$ docker rm mytb
$ docker run -it -p 9090:9090 -p 1883:1883 -p 7070:7070 -p 5683-5688:5683-5688/udp -v ~/.mytb-data:/data -v ~/.mytb-logs:/var/log/thingsboard --name mytb --restart always thingsboard/tb-cassandra
NOTE: replace host's directory ~/.mytb-data with directory used during container creation.
Content type
Image
Digest
sha256:02b633bc3…
Size
1.1 GB
Last updated
6 months ago
docker pull thingsboard/tb-cassandra:4.2.1.1