1、application.properties文件
修改之前
### If turn on auth system:
nacos.core.auth.enabled=false
### The default token (Base64 String):
nacos.core.auth.plugin.nacos.token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789
修改之后
### If turn on auth system:
nacos.core.auth.system.type=nacos
nacos.core.auth.enabled=true
### The default token (Base64 String):
nacos.core.auth.plugin.nacos.token.secret.key=推荐将配置项设置为Base64编码的字符串,且原始密钥长度不得低于32字符
2、增加项目中nacos注册服务的验证信息
增加用户及密码:文章来源地址https://www.toymoban.com/news/detail-545554.html
spring.cloud.nacos.discovery.username=nacos
spring.cloud.nacos.discovery.password=nacos
文章来源:https://www.toymoban.com/news/detail-545554.html
到了这里,关于Nacos2.2.0-开启鉴权配置、权限认证的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!