美文网首页ELK
32.Elasticsearch集群其他常见错误处理

32.Elasticsearch集群其他常见错误处理

作者: 大勇任卷舒 | 来源:发表于2022-05-25 16:45 被阅读0次

    32.1 Kibana No Default Index Pattern Warning

    • 当访问kibana页面时,出现下面的信息:
      • 这就说明logstash没有把日志写入到elasticsearch
    Warning No default index pattern. You must select or create one to continue.
    ...
    Unable to fetch mapping. Do you have indices matching the pattern?
    
    • 解决方法:
      • 检查logstash与elasticsearch之间的通讯是否有问题

    32.2 Kibana Unable to connect to Elasticsearch

    • 当访问kibana页面时,出现下面的信息:
      • 这个问题很明显,Kibana不能连接到Elasticsearch ,可能 Elasticsearch没有运行或Kibana 没有配置正确的elasticsearch服务地址
    Fatal Error
    Kibana: Unable to connect to Elasticsearch
    Error: Unable to connect to Elasticsearch
    Error: Bad Gateway
    
    • 解决方法:
      • 检查kibana目录下的config/kibana.yml文件,查看elasticsearch配置是否正确

    32.3 logstash Configuration Contains a Syntax Error

    • logstash 语法错误,这个问题一般各种各样的。主要是logstash配置文件不对导致的
    • 解决方法:
      • 在启动logstash前,先检查下logstash配置文件是否有问题,可通过下面命令检测:
    /opt/logstash/bin/logstash --configtest -f /etc/logstash/conf.d/30-lumberjack-output.conf
    
    • 后面指定你自己的配置文件

    大数据视频推荐:
    腾讯课堂
    CSDN
    ELK入门精讲
    AIOps智能运维实战
    ELK7 stack开发运维
    大数据语音推荐:
    ELK7 stack开发运维
    企业级大数据技术应用
    大数据机器学习案例之推荐系统
    自然语言处理
    大数据基础
    人工智能:深度学习入门到精通

    相关文章

      网友评论

        本文标题:32.Elasticsearch集群其他常见错误处理

        本文链接:https://www.haomeiwen.com/subject/juvtprtx.html