influxdb

 

1、安装
Centos
# wget https://dl.influxdata.com/influxdb/releases/influxdb-1.1.0.x86_64.rpm
# rpm -ivh influxdb-1.1.0.x86_64.rpm

influxdb使用的端口如下:

8083: Web admin管理服务的端口, http://localhost:8083
8086: HTTP API的端口
8088: 集群端口(目前还不是很清楚, 配置在全局的bind-address,默认不配置就是开启的)

链接 查看;

influxdb

创建用户;
> create user "test" with password '123456'
> create user "root" with password '12345678' with all privileges
> show users;
user admin
---- -----
test false
root true

删除账户 : drop user "test"