consul使用ACL的一个问题?
问题描述
这个我的配置文件,acl_master_token已经设置了,应用我是跑在docker里的
{
"datacenter": "dc1",
"data_dir": "/consul/data",
"log_level": "INFO",
"server": true,
"bootstrap_expect": 3,
"acl_datacenter": "dc1",
"acl_master_token": "fe15af83-d36e-××××××××××××××××××××",
"acl_token": "54321c",
"acl_default_policy": "deny",
"acl_down_policy": "extend-cache",
"bind_addr": "192.168.1.15",
"client_addr": "0.0.0.0",
"retry_join": ["192.168.1.12"],
"retry_interval": "3s",
"raft_protocol": 3,
"enable_debug": false,
"rejoin_after_leave": true,
"encrypt": "h+TjXojPyignafeO+dCeow==",
"enable_syslog": false
}
启动consul后发现,
018/11/12 13:28:06 [ERR] agent: failed to sync remote state: ACL not found
consul_1_aa055051bff7 | 2018/11/12 13:28:07 [ERR] agent: Coordinate update error: ACL not found
consul_1_aa055051bff7 | 2018/11/12 13:28:24 [ERR] agent: Coordinate update error: ACL not found
consul_1_aa055051bff7 | 2018/11/12 13:28:34 [ERR] agent: failed to sync remote state: ACL not found
consul_1_aa055051bff7 | 2018/11/12 13:28:47 [ERR] agent: Coordinate update error: ACL not found
似乎是ACL没有设置正确,但是acl_token
我也配置了
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试试配置一下acl_agent_master_token
问题是这样解决的:
Consul v1.3.1
生成agent token
上面对于第一个节点启动的时候会遇到
原因在于还未设置
agent token
,生成步骤如下:然后加入配置文件,
acl_agent_token
填入上面生成的token重启agent
对于其他节点,可以不停机加入agent token
详细说明