我是靠谱客的博主 自信方盒,最近开发中收集的这篇文章主要介绍es 创建索引报错_kibana页面报错:Config: Request failed with status code,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

kibana 6.2.4 升级 6.4.2 完成升级后首次打开kibana页面。

升级过程详见: http://blog.51cto.com/michaelkang/2298677

报错内容:

浏览器打开kibana页面后:

左上角提示:

Help us improve the Elastic Stack by providing basic feature usage statistics? We will never share this data outside of Elastic. Read more

点击 yes or no 报错如下:

Config: Request failed with status code: 503

详细报错内容:

Error: Request failed with status code: 503

at _callee$ (https://cnkbhbak.ptmind.com/bundles/commons.bundle.js:3:878828)

at tryCatch (https://cnkbhbak.ptmind.com/bundles/vendors.bundle.js:43:602785)

at Generator.invoke [as _invoke] (https://cnkbhbak.ptmind.com/bundles/vendors.bundle.js:43:606667)

at Generator.prototype.(anonymous function) [as next] (https://cnkbhbak.ptmind.com/bundles/vendors.bundle.js:43:603908)

at step (https://cnkbhbak.ptmind.com/bundles/commons.bundle.js:3:879600)

at https://cnkbhbak.ptmind.com/bundles/commons.bundle.js:3:879726

排查步骤:

打开浏览器工程模式查看浏览器返回错误信息:

{statusCode: 503, error: "Service Unavailable",

message: "Automatic index creation failed",…} 《== 核心报错内容

code: "ES_AUTO_CREATE_INDEX_ERROR"

error: "Service Unavailable"

message: "Automatic index creation failed"

statusCode: 503

以上报错信息基本可以确定是集群不能自动创建索引导致的,先临时打开试一下。

临时开启允许es集群允许创建索引

PUT _cluster/settings

{

"transient" :

{

"action.auto_create_index": "true"

}

}

然后点击 yes or no都将不会再报错 ! 问题解决。

原文:http://blog.51cto.com/michaelkang/2298689

最后

以上就是自信方盒为你收集整理的es 创建索引报错_kibana页面报错:Config: Request failed with status code的全部内容,希望文章能够帮你解决es 创建索引报错_kibana页面报错:Config: Request failed with status code所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部