infludb基本操作

创建数据库 influx create database appdb show databases 创建用户 create user app with password 'appsecret' grant ALL on appdb to app show users show grants for app 查看数据 SELECT * FROM /.*/ LIMIT 1 do

创建数据库

influx
create database appdb
show databases

创建用户

create user app with password 'appsecret'
grant ALL on appdb to app
show users
show grants for app

查看数据

SELECT * FROM /.*/ LIMIT 1

docs

  1. influxdb/v0.13/getting_started/

  2. re-set-a-user-s-password

关键字:influxdb, appdb, show, create