创建具有组合访问权限的角色
创建具有集群和数据库访问权限的角色。
Redis 企业软件 |
---|
要创建授予数据库访问权限并允许访问集群管理 UI 和 REST API 的角色,请执行以下作:
-
定义确定数据库访问权限的 Redis ACL。
-
创建添加了 ACL 的角色,然后选择除 None 之外的 Cluster management 角色。
定义 Redis ACL
您可以使用集群管理器 UI 或 REST API 来定义可分配给角色的 Redis ACL 规则。
Cluster Manager UI 方法
要使用集群管理器 UI 定义 Redis ACL 规则:
-
从 Access Control > Redis ACL 中,您可以:
-
输入 Redis ACL 的描述性名称。这将用于将 ACL 规则与角色关联。
-
定义 ACL 规则。有关 Redis ACL 规则和语法的更多信息,请参阅 Redis ACL 概述。
注意:ACL 生成器不支持选择器和密钥权限。使用 Free text 命令手动定义它们。 -
选择 Save (保存)。
failure
,但该命令在允许的键上运行。REST API 方法
要使用 REST API 定义 Redis ACL 规则,请使用 create Redis ACL 请求。有关 Redis ACL 规则和语法的更多信息,请参阅 Redis ACL 概述。
请求示例:
POST /v1/redis_acls
{
"name": "Test_ACL_1",
"acl": "+@read +FT.INFO +FT.SEARCH"
}
Example response body:
{
"acl": "+@read +FT.INFO +FT.SEARCH",
"name": "Test_ACL_1",
"uid": 11
}
To associate the Redis ACL with a role and database, use the uid
from the response as the redis_acl_uid
when you add roles_permissions
to the database. See Associate a database with roles and Redis ACLs for an example request.
Create roles with ACLs and cluster access
You can create a role that grants database access privileges and allows access to the Cluster Management UI and REST API.
Cluster Manager UI method
To define a role for combined access using the Cluster Manager UI:
-
From Access Control > Roles, you can:
-
Enter a descriptive name for the role. This will be used to reference the role when configuring users.
-
Choose a Cluster management role other than None. For details about permissions granted by each role, see Cluster Manager UI permissions and REST API permissions.
-
Select + Add ACL.
-
Choose a Redis ACL and databases to associate with the role.
-
-
Select Save.
You can assign the new role to users to grant database access and access to the Cluster Manager UI and REST API.
REST API method
To define a role for combined access using the REST API:
Create a role
To create a role using the REST API:
POST /v1/roles
{
"name": "<role-name>",
"management": "db_viewer | db_member | cluster_viewer | cluster_member | admin"
}
Example response body:
{
"management": "admin",
"name": "<role-name>",
"uid": 7
}
To associate the role with a Redis ACL and database, use the uid
from the response as the role_uid
when you add roles_permissions
to the database. See Associate a database with roles and Redis ACLs for an example request.
Associate a database with roles and Redis ACLs
Update a database's configuration to add roles_permissions
with the role and Redis ACL:
POST /v1/bdbs/<database-id>
{
"roles_permissions":
[
{
"role_uid": <integer>,
"redis_acl_uid": <integer>
}
]
}
On this page