ELK8.4安装配置错误记录

news/2024/7/7 20:22:19

1. kibana启动报错,kibana_system用户认证

[2022-09-06T19:47:01.491-04:00][ERROR][elasticsearch-service] Unable to retrieve version information from Elasticsearch nodes. security_exception: [security_exception] Reason: unable to authenticate user [kibana_system] for REST request [/_nodes?filter_path=nodes.*.version%2Cnodes.*.http.publish_address%2Cnodes.*.ip]

解决办法:设置kibana_system用户的密码。
[es@goya1 cert]$ elasticsearch-reset-password -u kibana_system -i
warning: ignoring JAVA_HOME=/app/elasticsearch/jdk; using bundled JDK
This tool will reset the password of the [kibana_system] user.
You will be prompted to enter the password.
Please confirm that you would like to continue [y/N]y
Enter password for [kibana_system]: changeit123
Re-enter password for [kibana_system]changeit123
Password for the [kibana_system] user successfully reset.

修改,确认kibana.yml文件的配置部分:
# If your Elasticsearch is protected with basic authentication, these settings provide
# the username and password that the Kibana server uses to perform maintenance on the Kibana
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
# is proxied through the Kibana server.
elasticsearch.username: "kibana_system"
elasticsearch.password: "changeit123"


http://lihuaxi.xjx100.cn/news/3625.html

相关文章

9.13服务器技术第一次课记录

文章目录1.了解知识结构2. 认识服务器,什么是 服务器——高性能计算机3. 硬件构成和软件系统4. Linux操作系统优势5. 服务器与普通电脑的区别?6.服务器的分类(功能 架构 外形)架构分类:X86 架构 RISC 架构 EPIC架构外形…

golang操作zookeeper

文章目录golang操作zookeeper官方文档下载包连接到Server创建节点修改节点删除节点watch机制全局监听部分监听golang操作zookeeper 官方文档 https://pkg.go.dev/github.com/samuel/go-zookeeperv0.0.0-20201211165307-7117e9ea2414/zk下载包 go get github.com/samuel/go-z…

Flash Cache 过渡方案

Flash Cache的新特性就早已经被释放出来,该特性允许使用SSD硬盘作为Buffer Cache的二级缓存,以在磁盘和内存之间增加一级缓冲,提升数据访问性能。 以下是文档中的一些描述: A transparent extension of the database buffer cac…

研究:从网络估值看以太坊为何处于增长态势

世界上最大的可编程区块链以太坊将经历一场巨大的变革。以太坊网络将从能源密集型的工作量证明共识机制过渡到可持续的权益证明(PoS)共识机制。 此次升级被称为合并(The Merge),是以太坊路线图中的第一项升级,将使该网络的基础设施经得起未来考验。对于…

Anaconda常用命令

文章目录文章链接管理Anaconda检查anaconda版本升级anaconda版本管理conda环境查看conda环境清单进入某个conda环境退出某个conda环境全新创建conda环境指定存放路径创建conda环境克隆创建conda环境删除某个conda环境导出环境的库信息到配置文件通过导入的方式创建conda环境管理…

可能是最全的:虚拟机使用失败解决方案汇总

目录 前言 简单说说 1、安装时报错/安装后无法启用虚拟机 如何解决 方法一:移除Hype-V,成功率:40% 方法二:安装WHP,成功率:99% 方法三:恢复出厂设置,成功率:100% VBX&#xff…

【43. 数位统计DP(计数问题)】

方法 最重要一点&#xff1a;分情况讨论 比如说我要找[1,abcdefg]中的数中1出现的个数 就得先求1在每一个位置上出现的次数 比如我要找第4位上出现的1的数有几个 就是要找满足 1 < xxx1yyy < abcdefg xxx∈[000,abc-1] , yyy∈[000,999] , ans abc*1000 //如果前三位没…

最全电脑固态硬盘SSD入门级白皮书

现在个人电脑上基本都是搭配的固态硬盘&#xff0c;在某购物网站销量排行的第一的笔记本电脑的概述配置&#xff0c;比如搭载固态硬盘512GB。在笔记本市场&#xff0c;基本已经没有机械硬盘的身影了。在台式机上&#xff0c;大容量机械硬盘还是很受欢迎&#xff0c;主要用来做数…