#启动
nohup /usr/bin/influxd -config /etc/influxdb/influxdb.conf &
#登录
influx -port 8086
#查询所有库名
show databases;
#查询所有表名:
show measurements;
#查询表内容,类似sql语句
select * frm disk_free;
select value from disk_free where “hostname” = ‘server01’ limit 1;
influxdb基本使用
最新推荐文章于 2024-08-15 14:49:09 发布