** {"type":"log","@timestamp":"2019-03-01T02:46:37Z","tags":["status","plugin:kibana@5.6.15","info"],"pid":9,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2019-03-01T02:46:37Z","tags":["status","plugin:elasticsearch@5.6.15","info"],"pid":9,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2019-03-01T02:46:37Z","tags":["status","plugin:console@5.6.15","info"],"pid":9,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2019-03-01T02:46:37Z","tags":["status","plugin:elasticsearch@5.6.15","error"],"pid":9,"state":"red","message":"Status changed from yellow to red - Authentication Exception","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2019-03-01T02:46:37Z","tags":["status","plugin:metrics@5.6.15","info"],"pid":9,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2019-03-01T02:46:37Z","tags":["status","plugin:timelion@5.6.15","info"],"pid":9,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2019-03-01T02:46:38Z","tags":["listening","info"],"pid":9,"message":"Server running at http://0.0.0.0:5601"}
{"type":"log","@timestamp":"2019-03-01T02:46:38Z","tags":["status","ui settings","error"],"pid":9,"state":"red","message":"Status changed from uninitialized to red - Elasticsearch plugin is red","prevState":"uninitialized","prevMsg":"uninitialized"}**
My es haven't install x-pack , and so I pull a kibana image from docker hub https://hub.docker.com/_/kibana/ which without x-pack,and run it on my k8s, my kibana config is
"env": [
{
"name": "SERVER_NAME",
"valueFrom": {
"fieldRef": {
"apiVersion": "v1",
"fieldPath": "metadata.name"
}
}
},
{
"name": "ELASTICSEARCH_URL",
"value": "http://127.0.0.1:9200"
},
{
"name": "ELASTICSEARCH_USERNAME",
"value": "root"
},
{
"name": "ELASTICSEARCH_PASSWORD",
"value": "somepasswd"
},
{
"name": "SERVER_HOST",
"value": "0.0.0.0"
},
{
"name": "SERVER_BASEPATH",
"value": "/lbsdata"
},
{
"name": "XPACK_MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED",
"value": "false"
},
{
"name": "XPACK_MONITORING_ENABLED",
"value": "false"
},
{
"name": "XPACK_SECURITY_ENABLED",
"value": "false"
},
{
"name": "XPACK_GRAPH_ENABLED",
"value": "false"
},
{
"name": "XPACK_REPORTING_ENABLED",
"value": "false"
},
{
"name": "XPACK_ML_ENABLED",
"value": "false"
},
{
"name": "XPACK_WATCHER_ENABLED",
"value": "false"
}
]
Is there anything wrong with my config?