码迷,mamicode.com
首页 > 数据库 > 详细

InfluxDB 的用户

时间:2014-11-20 15:03:35      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   os   sp   数据   2014   log   bs   

InfluxDB 的用户有三种:

  • cluster admin   集群admin
  • database admin  数据库admin
  • database user  数据库用户

cluster admin

具有下面权限:

  • 增加和删除数据库
  • 对任何数据库的database admin 和 database user 用户增加和删除,或者给他们赋予读写权限。
  • 集群管理员没有查询数据的权限。

默认它有一个用户名是 root, 密码也是 root的 账户

集群管理员的操作命令如下:

# get list of cluster admins curl 
curl ‘http://localhost:8086/cluster_admins?u=root&p=root‘

# add cluster admin
curl -X POST ‘http://localhost:8086/cluster_admins?u=root&p=root‘ \
  -d ‘{"name": "paul", "password": "i write teh docz"}‘

# update cluster admin password
curl -X POST ‘http://localhost:8086/cluster_admins/paul?u=root&p=root‘ \
  -d ‘{"password": "new pass"}‘

# delete cluster admin
curl -X DELETE ‘http://localhost:8086/cluster_admins/paul?u=root&p=root‘

对应的界面管理功能如下:

bubuko.com,布布扣

database admin

database admin 可以对当前数据库增加或者删除database admin 和 database user。
对不同的库则是没有权限的。

database user

database user能够对当前库进行读写操作。不能对数据库用户进行调整,

对应的操作如下:

# Database users, with a database name of site_dev

# add database user
curl -X POST ‘http://localhost:8086/db/site_dev/users?u=root&p=root‘   -d ‘{"name": "paul", "password": "i write teh docz"}‘

# delete database user
curl -X DELETE ‘http://localhost:8086/db/site_dev/users/paul?u=root&p=root‘

# update user‘s password
curl -X POST ‘http://localhost:8086/db/site_dev/users/paul?u=root&p=root‘   -d ‘{"password": "new pass"}‘

# get list of database users
curl ‘http://localhost:8086/db/site_dev/users?u=root&p=root‘

# add database admin privilege
curl -X POST ‘http://localhost:8086/db/site_dev/users/paul?u=root&p=root‘   -d ‘{"admin": true}‘

# remove database admin privilege
curl -X POST ‘http://localhost:8086/db/site_dev/users/paul?u=root&p=root‘   -d ‘{"admin": false}‘

InfluxDB 的用户

标签:style   blog   http   os   sp   数据   2014   log   bs   

原文地址:http://www.cnblogs.com/ghj1976/p/4110605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!