2.2.2nacos开启鉴权
时间: 2023-09-03 10:15:42 浏览: 160
Nacos提供了基于角色的权限管理,可以通过配置文件或者API来开启鉴权。
1. 配置文件方式:
在 Nacos 的配置文件(application.properties 或 application.yml)中设置以下属性:
```
# 开启鉴权
nacos.core.auth.enabled=true
# 鉴权类型,支持 `simple` 和 `custom`,其中 `simple` 表示简单模式(默认),`custom` 表示自定义模式
nacos.core.auth.type=simple
# 管理员用户名和密码,多个用户以逗号分隔
nacos.core.auth.simple.username=your_username
nacos.core.auth.simple.password=your_password
```
2. API方式:
使用 Nacos 的 API 来进行鉴权配置,具体步骤如下:
1) 创建一个名为“nacos-auth”的命名空间。
2) 在该命名空间下创建一个名为“nacos-authentication”的配置项。
3) 设置“nacos-authentication”配置项的值为以下 JSON 串:
```
{
"users": [
{
"username": "your_username",
"password": "your_password",
"roles": [
"admin"
]
}
],
"permissions": [
{
"resource": "*",
"action": "*",
"role": "admin"
}
],
"roles": [
{
"name": "admin",
"permissions": [
"*:*:*"
]
}
]
}
```
4) 重新启动 Nacos Server。
这样就可以开启 Nacos 的鉴权功能了。注意,如果使用的是 API 方式,需要使用相应的 API 来进行操作,如添加用户、添加角色、添加权限等。
阅读全文