kibana 报node does not have the remote cluster client role enabled

2023年12月19日 12:22  ·  阅读 416

问题现象:

ElasticSearch集群版本8.11.1

kibana版本8.11.1

当打开Kibana Stack Monitoring时报以下错误:

illegal_argument_exception: node [ip:port] does not have the remote cluster client role enabled.

image.png

图1

image.png

图2

解决方法1:

ElasticSearch节点roles添加remote_cluster_client 这个角色。

修改elasticsearch.yml文件,并在node.roles中追加remote_cluster_client 这个角色。

> cat elasticsearch.yml
node.roles: [remote_cluster_client]

解决方法2:

kibana配置文件添加 monitoring.ui.ccs.enabled: false参数

image.png


建议使用方法1,如果使用方法2,图2那个错误还是会出现,解决不了根本问题。

参考链接:

https://github.com/elastic/kibana/issues/93432

评论
全部评论