Running-multiple-instance-of-elk-on-same-machine

I have an ELK Stack 5.1.1 running on one machine and at the same time I am installing another instance of ELK (5.2.2) on the same machine running 5.1.1.

I have made following changes to

elasticsearch.yml

http.port: 9222 to http.port: 9222

kibana.yml

server.port: 5661
server.host: 0.0.0.0
elasticsearch.url: http://localhost:9222

When I try to run kibana 5.2.2 (ES 5.2.2 is running on 127.0.0.1:9222)
I get following error:

log   [08:58:41.057] [info][status][plugin:kibana@5.2.2] Status changed from uninitialized to green - Ready
  log   [08:58:41.171] [info][status][plugin:elasticsearch@5.2.2] Status changed from uninitialized to yellow - Waiting for Elasticsearch
  log   [08:58:41.230] [info][status][plugin:console@5.2.2] Status changed from uninitialized to green - Ready
  log   [08:58:41.246] [error][status][plugin:elasticsearch@5.2.2] Status changed from yellow to red - This version of Kibana requires Elasticsearch v5.2.2 on all nodes. I found the following incompatible nodes in your cluster: v5.1.1 @ 127.0.0.1:9200 (127.0.0.1)
  log   [08:58:41.487] [info][status][plugin:timelion@5.2.2] Status changed from uninitialized to green - Ready
  log   [08:58:41.492] [info][listening] Server running at http://servername.com:5661
  log   [08:58:41.494] [error][status][ui settings] Status changed from uninitialized to red - Elasticsearch plugin is red

Looks like it hasn't picked up the config change.

However why not use something like docker to do this?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.