授予访问“组件”屏幕的权限
ENTERPRISE
授予访问“组件”屏幕的权限
您可以授予用户访问 组件屏幕 的权限。新用户默认没有权限。
使用 Web 界面授予访问权限
前提条件:
- 不具有
dcos:superuser
权限 的 DC/OS 用户账户。
以具有
superuser
权限的用户身份登录 DC/OS Web 界面。图 1. 登录 Web 界面
选择组织,然后选择用户或组。
选择要授予权限的用户名或组名。
图 2. 选择要授予权限的用户或组
在权限屏幕上,单击添加权限。
单击插入权限字符串以切换对话框。
图 3. 添加权限
在权限字符串字段中复制并粘贴权限。根据您的 安全模式 选择权限字符串,单击添加权限,然后单击关闭。
宽容
组件选项卡
dcos:adminrouter:ops:historyservice full
dcos:adminrouter:ops:system-health full
严格
组件选项卡
dcos:adminrouter:ops:historyservice full
dcos:adminrouter:ops:system-health full
使用 API 授予访问权限
前提条件:
- 必须 安装 DC/OS CLI 并以超级用户登户身份登录。
- 必须 获取根证书 才能在本部分发出
curl
命令。
Notes
- 服务资源通常包括
/
必须在curl
请求中以%252F
替换的字符,如下例所示。 - 使用 API 管理权限时,您必须在授予之前先创建权限。如果权限已存在,API 将返回提示信息,您可以继续分配权限。
宽容
创建权限。
curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" \
-H 'Content-Type: application/json' \
$(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:historyservice \
-d '{"description":"Grants access to the contents of the Components screen"}'
curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" \
-H 'Content-Type: application/json' \
$(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:system-health \
-d '{"description":"Grants access to the Components screen"}'
向用户
uid
授予以下特权。curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:historyservice/users/<uid>/full
curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:system-health/users/<uid>/full
注意:要向组而不是向用户授予权限,应将
/users/"uid"
替换为/groups/"gid"
。
严格
创建权限。
curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" \
-H 'Content-Type: application/json' \
$(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:historyservice \
-d '{"description":"Grants access to the contents of the Components screen"}'
curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" \
-H 'Content-Type: application/json' \
$(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:system-health \
-d '{"description":"Grants access to the Components screen"}'
向用户
uid
授予以下特权。curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:historyservice/users/<uid>/full
curl -X PUT --cacert dcos-ca.crt \
-H "Authorization: token=$(dcos config show core.dcos_acs_token)" $(dcos config show core.dcos_url)/acs/api/v1/acls/dcos:adminrouter:ops:system-health/users/<uid>/full
注意:要向组而不是向用户授予权限,应将
/users/"uid"
替换为/groups/"gid"
。