tar xvfz influxdb-1.8.10_linux_amd64.tar.gz 解压压缩包。./influx -host <DB_HOST> -port <DB_PORT> -username <USERNAME> -password <PASSWORD>./influx -host 10.0.1.7 -port 8086 -username ctsdbi-m35uo1e8 -password test@123time_series_test_db1 的时序数据库,该数据库的数据永久保留:CREATE DATABASE time_series_test_db1。time_series_test_db2 的时序数据库,该数据库启用数据过期,设置数据被保留30天:CREATE DATABASE time_series_test_db2 WITH DURATION 30d 。show databases。序号 | 执行步骤 | 执行语句 | 返回信息 |
1 | 指定数据库 | use time_series_test_db | Using database time_series_test_db |
2 | 插入数据 | INSERT test_ctsdb,cap_id=king value=2 | - |
3 | 查询数据 | show measurements | name: measurements
name
----
test_ctsdb |
文档反馈