thingsboard安装
时间: 2023-10-02 14:09:41 浏览: 150
安装Thingsboard有两种方法:使用Docker容器和手动安装。
使用Docker容器:
1. 安装Docker和Docker Compose。
2. 在终端中运行以下命令:
```
$ git clone https://github.com/thingsboard/thingsboard.git
$ cd thingsboard
$ sudo sysctl -w vm.max_map_count=262144
$ docker-compose -f docker-compose.yml up
```
3. 打开Web浏览器并访问http://localhost:8080,即可开始使用Thingsboard。
手动安装:
1. 安装Java运行环境(JRE)和PostgreSQL数据库。
2. 下载Thingsboard源代码并解压缩。
3. 在终端中进入解压缩后的目录并运行以下命令:
```
$ ./gradlew build
```
4. 运行以下命令来启动Thingsboard服务器:
```
$ cd application/target
$ java -jar thingsboard-<version>.war
```
5. 打开Web浏览器并访问http://localhost:8080,即可开始使用Thingsboard。
阅读全文