dagatsoin
dagatsoin

Reputation: 2656

How to run elasticsearch as a service on CentOS 5

I found only this official guide to install Elasticsearch 2.0 as a service but there is no mention of CENTOS5. What are the steps to install ES as a service on CentOS5?

Upvotes: 0

Views: 777

Answers (1)

Olly Cruickshank
Olly Cruickshank

Reputation: 6180

CentOS is based on RedHat and should use the RPM distribution, start it as follows:

sudo /sbin/chkconfig --add elasticsearch
sudo service elasticsearch start

Upvotes: 1

Related Questions