Reputation: 2382
i was wondering if you help me out here; am trying to run multiple elasticsearch processes on the same (CentOS) server, but i have been un-successful so far. and i have not enabled the service wrapper. and Elasticsearch has been installed using the .rpm package
the requirements are:
the elasticsearch.yml
file is attached where all parameters are described.
and the questions are:
Des.config
seems to be deprecated in 2.2# bin/elasticsearch -Des.config=config/IP-spotlight.RRv4/elasticsearch.yml [2016-02-14 19:44:02,858][INFO ][bootstrap ] es.config is no longer supported. elasticsearch.yml must be placed in the config directory and cannot be renamed.
please help ..
Upvotes: 0
Views: 894
Reputation: 3230
You have two solutions:
elasticsearch
archive from the site and run it from different paths with different configs. You can monitor each running instance with a method like supervisor
. The main page for Elasticsearch downloads is heredocker
container. This is the right way to do, because it is easier to deploy and manage. You can find a Elasticsearch docker image hereUpvotes: 2