influxdb2.0以上的版本变化较大,需要注意版本问题。
以下是使用的window influxdb cli 客户端,管网下载cli直接解压,influx.exe 不能直接双击打开,需要使用管理员开打power shell,进入该目录下后使用命令行打开。
1.网上查出来的命令不一定适用,也需要注意版本的差异;最好在自己的webUI系统中去查看自己需要的命令。
例如:我在网站上找的命令换行符使用的是“\”,但是我实际操作需要是“ ` ”,才能执行成功。
?
使用\执行失败
.\influx delete \
--bucket dc3 \
--start 1970-01-01T00:00:00Z \
--stop 2024-01-01T00:00:00Z \
--predicate "_measurement=point_value"
使用 `执行成功
.\influx delete `
--bucket dc3 `
--start 1970-01-01T00:00:00Z `
--stop 2024-01-01T00:00:00Z `
--predicate "_measurement=point_value"
? ? ? ?3.1连接配置
.\influx config create --config-name influx001 `
--host-url "http://43.15.186.84:8086" `
--org "influxdb" `
--token "cyJiHCF5r0tbPUq9o38FbsSN8kBoLBlx5HpDz9TYQ9u8GhDci5PJpNA==" `
--active
? ? ? ? 3.2 删除
.\influx delete `
--bucket dc3 `
--start 1970-01-01T00:00:00Z `
--stop 2024-01-01T00:00:00Z `
--predicate "_measurement=point_value"
? ? ? ? 3.3 查看组织列表
.\influx org list