Hi Team
I installed Elasticsearch 6.8 and kibana 6.8, with basic license, for some time both were working find. now i am unable to get my Kibana working, though the ES is green and i can see all my app logs being pumped to ES with auth enabled...
My kibana log says:
{"type":"log","@timestamp":"2019-07-29T03:41:39Z","tags":["license","warning","xpack"],"pid":28265,"message":"License information from the X-Pack plugin could not be obtained from Elasticsearch for the [data] cluster. Error: Request Timeout after 30000ms"}
{"type":"log","@timestamp":"2019-07-29T03:42:09Z","tags":["warning","task_manager"],"pid":28265,"message":"PollError Request Timeout after 30000ms"}
{"type":"log","@timestamp":"2019-07-29T03:42:39Z","tags":["license","warning","xpack"],"pid":28265,"message":"License information from the X-Pack plugin could not be obtained from Elasticsearch for the [data] cluster. Error: Request Timeout after 30000ms"}
{"type":"log","@timestamp":"2019-07-29T03:42:42Z","tags":["warning","task_manager"],"pid":28265,"message":"PollError Request Timeout after 30000ms"}
My kibana yml:
elasticsearch.url: "http://x.x.x.x:9200"
server.host: "x.x.x.x"
elasticsearch.username: "kibana"
elasticsearch.password: "xxxxxx"
xpack.security.enabled: true
xpack.graph.enabled: false
xpack.ml.enabled: false
xpack.monitoring.enabled: true
xpack.watcher.enabled: false
xpack.ccr.enabled: false
My elasticsearch yml:
cluster.name: "xxxxxxxxxxxxxxxxxxxxx"
node.name: ${HOSTNAME}
node.master: true
node.data: false
cluster.routing.allocation.awareness.force.zone.values: 1A, 1B
cluster.routing.allocation.awareness.attributes: zone
node.attr.zone: 1A
discovery.zen.ping.unicast.hosts: ["xxxxx", "xxxxxx", "xxxxx"]
path.data: /esdata/data/
path.logs: /esdata/logs/
network.host: x.x.x.x
discovery.zen.minimum_master_nodes: 2
http.port: 9200
gateway.recover_after_nodes: 1
bootstrap.system_call_filter: false
xpack.security.enabled: true
xpack.security.authc.accept_default_password: true
xpack.security.transport.ssl.enabled: true
xpack.security.transport.ssl.verification_mode: certificate
xpack.security.transport.ssl.keystore.path: /etc/elasticsearch/elastic-certificates.p12
xpack.security.transport.ssl.truststore.path: /etc/elasticsearch/elastic-certificates.p12
My License details:
{
"license" : {
"status" : "active",
"uid" : "d7d4d0ce-9d8d-402d-92c4-2093691bf643",
"type" : "basic",
"issue_date" : "2019-05-28T05:28:48.078Z",
"issue_date_in_millis" : 1559021328078,
"max_nodes" : 1000,
"issued_to" : "IMIConnect-Prod-Imonitor-Cluster",
"issuer" : "elasticsearch",
"start_date_in_millis" : -1
}
}
My x-pack status:
{
"build" : {
"hash" : "65b6179",
"date" : "2019-05-15T20:07:59.571448Z"
},
"license" : {
"uid" : "d7d4d0ce-9d8d-402d-92c4-2093691bf643",
"type" : "basic",
"mode" : "basic",
"status" : "active"
},
"features" : {
"ccr" : {
"description" : "Cross Cluster Replication",
"available" : false,
"enabled" : true
},
"graph" : {
"description" : "Graph Data Exploration for the Elastic Stack",
"available" : false,
"enabled" : true
},
"ilm" : {
"description" : "Index lifecycle management for the Elastic Stack",
"available" : true,
"enabled" : true
},
"logstash" : {
"description" : "Logstash management component for X-Pack",
"available" : false,
"enabled" : true
},
"ml" : {
"description" : "Machine Learning for the Elastic Stack",
"available" : false,
"enabled" : true,
"native_code_info" : {
"version" : "6.8.0",
"build_hash" : "e6cf25e2acc5ec"
}
},
"monitoring" : {
"description" : "Monitoring for the Elastic Stack",
"available" : true,
"enabled" : true
},
"rollup" : {
"description" : "Time series pre-aggregation and rollup",
"available" : true,
"enabled" : true
},
"security" : {
"description" : "Security for the Elastic Stack",
"available" : true,
"enabled" : true
},
"sql" : {
"description" : "SQL access to Elasticsearch",
"available" : true,
"enabled" : true
},
"watcher" : {
"description" : "Alerting, Notification and Automation for the Elastic Stack",
"available" : false,
"enabled" : true
}
},
"tagline" : "You know, for X"
Can some help me on this please