我试图在windows10上安装kibana8.1.1,问题是当它开始安装时,它会在一个类似于[2022-04-16T01:16:59.744+00:00][ERROR][elasticsearch-service] Unable to retrieve version information from Elasticsearch nodes. security_exception: [security_exception] Reason: missing authentication credentials for REST request [/_nodes? filter_path=nodes..version%2Cnodes..http.publish_address%2Cnodes.*.ip]
的错误上停止
我尝试了很多解决方案,比如,我确实更改了elastisearch.yml文件xpack.security.enabled: false
但是它仍然不起作用--我在kibana.yml上也做了同样的事情--我也添加了这条折页行
`xpack.security.enabled: true
xpack.monitoring.enabled: true
xpack.monitoring.ui.enabled: true
xpack.security.encryptionKey: "XXX"`
还是什么都没有。
我在kibana.yml之前也删除了elasticsearch.hosts: ["http://localhost:9200"]
的#
这里还有kibana.yml:server.port: 5601 server.host: "localhost" server.name: "your-hostname" elasticsearch.hosts: ["http://localhost:9200"]
elasticsearch.yml:
`cluster.name: my-application
network.host: 192.168.0.1
node.name: node-1
discovery.seed_hosts: ["host1", "host2"]
cluster.initial_master_nodes: ["node-1", "node-2"]`
我对我的英语感到很抱歉,这不是我的第一个语言,也不知道该怎么做才是我的学习项目,我还是个初学者,谷歌也帮不上忙。
谢谢你帮助我
发布于 2022-04-29 08:59:16
elasticsearch.username: "kibana_system"
elasticsearch.password: <my-kibana_system-password>
https://stackoverflow.com/questions/71890575
复制相似问题