DBeaver(IoTDB)
April 1, 2025About 1 min
DBeaver(IoTDB)
DBeaver is an SQL client and database management tool. It can interact with IoTDB using IoTDB's JDBC driver.
1. Install DBeaver
- Download DBeaver: https://dbeaver.io/download/
2. Install IoTDB
- Method 1: Download IoTDB binary release
- Download: https://iotdb.apache.org/Download/
- Version requirement: ≥ 2.0.1
- Method 2: Build from source
- Source code: https://github.com/apache/iotdb
- Follow compilation instructions in README.md or README_ZH.md
3. Connect IoTDB to DBeaver
Start the IoTDB service.
./sbin/start-server.sh
Launch DBeaver.
Create a new database connection:
Go to
DBeaver > Database > New Database Connection
, or click the"+"
icon in the top-left corner.Select the IoTDB driver (under
"All"
or"Timeseries"
categories).Configure the connection based on your IoTDB model:(Username = Password = root)
For Tree Model: Use the default Host method
For Table Model: Use the URL method and append
?sql_dialect=table
to enable table mode.
Click
Test
Connection – if successful, the IoTDB version will be displayed.
You can now use IoTDB via DBeaver.
