Docs: Add instructions to start elasticsearch on bootup on RHEL/Fedora.
This commit is contained in:
parent
0a09f1ea13
commit
344bbf2ced
|
@ -66,3 +66,19 @@ And your repository is ready for use. You can install it with :
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
yum install elasticsearch
|
yum install elasticsearch
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
|
Configure Elasticsearch to automatically start during bootup. If your
|
||||||
|
distribution is using SysV, then you will need to run :
|
||||||
|
|
||||||
|
[source,sh]
|
||||||
|
--------------------------------------------------
|
||||||
|
chkconfig --add elasticsearch
|
||||||
|
--------------------------------------------------
|
||||||
|
|
||||||
|
Otherwise if your distribution is using systemd :
|
||||||
|
|
||||||
|
[source,sh]
|
||||||
|
--------------------------------------------------
|
||||||
|
sudo /bin/systemctl daemon-reload
|
||||||
|
sudo /bin/systemctl enable elasticsearch.service
|
||||||
|
--------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue