Hello,
I'm new newbie to ELK
I have installed Elastic search + Kibana using following URL on centos 7
http://xxx.xxx.xxx.xxx:5601/app/kibana#/management/kibana/indices/
Change 1. changed the installation location for kibana to different path
Change 2. changed the installation location for elasticsearch to different path as we have less storage available on "/"
Change 3. file /etc/elasticsearch/jvm.options and edited jvm value
-Xms4g
-Xmx4g
Change 4. file /etc/kibana/kibana.yml and added below IP
server.host: 0.0.0.0
Elastic search is running fine as I have checked with below command:
[root@admin ~]# curl -X GET "localhost:9200/"
{
"name" : "dbFb-O-",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "UyRAyOaKT_WVEminBuu3Kw",
"version" : {
"number" : "6.3.1",
"build_flavor" : "default",
"build_type" : "rpm",
"build_hash" : "eb782d0",
"build_date" : "2018-06-29T21:59:26.107521Z",
"build_snapshot" : false,
"lucene_version" : "7.3.1",
"minimum_wire_compatibility_version" : "5.6.0",
"minimum_index_compatibility_version" : "5.0.0"
},
"tagline" : "You Know, for Search"
}
Note: I did not set any username and Password or any SSL certificate for both Kibana and Elastic Search
I wanted check if Kibana and Elastic Search is working fine before I move further, So I loaded Sample Data using below URL
https://www.elastic.co/guide/en/kibana/current/tutorial-load-dataset.html
I got the Same result after doing that as below
[root@admin ~]# curl -XGET "http://localhost:9200/_cat/indices"
yellow open logstash-2015.05.20 IgqmgdOoRy2aVGep2ZuDgw 5 1 4750 0 22.9mb 22.9mb
yellow open logstash-2015.05.18 DmtW8dLKT4Kf9ZPvGP-A0g 5 1 4631 0 20.4mb 20.4mb
green open .monitoring-es-6-2018.07.17 RWDuaClrSuOFqYO6nnXu-w 1 0 7907 260 4.6mb 4.6mb
green open .kibana FnlqF11cTRmojF9uHZDa2Q 1 0 2 0 8.4kb 8.4kb
yellow open bank 7bbo_paESEmcYfF7EglXew 5 1 1000 0 475.1kb 475.1kb
yellow open logstash-2015.05.19 g2YfZc4bSM2nQSxJJEqrbQ 5 1 4624 0 21.7mb 21.7mb
yellow open shakespeare F41g8eD2RHC5psnySpSOKg 5 1 111396 0 21.5mb 21.5mb
In Kibana :
When I move to Next step i.e "Defining your index pattern" and then I Entered shakes* in the Index pattern field.
KIbana request got failed on http://xxx.xxx.xxx.xxx:5601/api/saved_objects/index-pattern/bd829490-89a9-11e8-b68b-a7a4a3512cc8
TypeError: Cannot read property 'message' of null
at http://xxx.xxx.xxx.xxx:5601/bundles/commons.bundle.js?v=16627:1:293183
at processQueue (http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:132456)
at http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:133349
at Scope.$digest (http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:144239)
at Scope.$apply (http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:147018)
at done (http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:100026)
at completeRequest (http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:104697)
at XMLHttpRequest.requestError (http://xxx.xxx.xxx.xxx:5601/bundles/vendors.bundle.js?v=16627:58:105545)
Note: I'm directly accessing kibana on 5601 port not using any proxy
Now When I try to access Kibana management >Index Patterns then It shows blank page
I really don't understand what is the issue.
Thanks in advance
Pankaj