问题: Kibana 部署好运行正常, 突然有一天不能登陆,显示 Kibana server is not ready yet
|
解决办法:
[root@node-001 ~]# [root@node-001 ~]# curl -XDELETE http://10.0.0.100:14106/.kibana {"acknowledged":true} [root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# curl -XDELETE http://10.0.0.100:14106/.kibana* {"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Wildcard expressions or all indices are not allowed"}],"type":"illegal_argument_exception","reason":"Wildcard expressions or all indices are not allowed"},"status":400}[root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# curl -XDELETE http://10.0.0.100:14106/.kibana_2 {"acknowledged":true}
[root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# curl -XDELETE http://10.0.0.100:14106/.kibana_1 {"acknowledged":true} [root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# [root@node-001 ~]# netstat -ntlp|grep 5601 tcp 0 0 10.0.0.100:5601 0.0.0.0:* LISTEN 4005/./bin/../node/ [root@node-001 ~]# kill -9 4005 [root@node-001 ~]#
[root@node-001 ~]# netstat -ntlp|grep 5601 [root@node-001 ~]# netstat -ntlp|grep 5601 tcp 0 0 10.0.0.100:5601 0.0.0.0:* LISTEN 41033/./bin/../node [root@node-001 ~]# ########################################################################################### |
Kibana server is not ready yet 处理办法
最新推荐文章于 2024-08-27 17:28:54 发布
本文讲述了Kibana无法登录的问题,通过删除特定目录下.kibana*和指定版本号的.kibana_,解决了'Kibanaserverisnotreadyyet'的错误。步骤包括使用`curl`删除、检查监听端口并重启服务。
摘要由CSDN通过智能技术生成