登陆influxdb数据库,清理数据
1、执行如下命令登录influxdb数据库
/usr/sbin/influx -precision rfc3339 -port 30001 -username admin -password 123445
#参数解释
-precision 时间字段以什么格式显示,默认为16329066852900000 的ms显示
-port 端口
-username
-password
2、切换到db1的库中
use db1;
执行如下命令删除旧数据,注意:
1) 这里需要将后面的日志修改,修改为删除多少日之前的数据
2)日期需要用单引号包裹,不支持双引号
delete from “monitor” where time <= ‘2021-09-20T00:00:00Z’
脚本方式
#!/bin/bash
cd /usr/bin/
./influx -precision s -port 30001 -username admin -password 123445 --database db1 --execute ‘delete from “monitor” where time >= now() - 1h’