kibana/docs/setup/install/systemd.asciidoc
gchaps 9caf354378
[DOCS] Edits titles in Setup section for consistency (#68451) (#68590)
* [DOCS] Fixes titles in Setup section for consistency

* [DOCS] Fixes to titles and orders of docs in Set up
2020-06-08 16:15:20 -07:00

23 lines
698 B
Plaintext

==== Run {kib} with `systemd`
To configure Kibana to start automatically when the system boots up,
run the following commands:
[source,sh]
--------------------------------------------------
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable kibana.service
--------------------------------------------------
Kibana can be started and stopped as follows:
[source,sh]
--------------------------------------------
sudo systemctl start kibana.service
sudo systemctl stop kibana.service
--------------------------------------------
These commands provide no feedback as to whether Kibana was started
successfully or not. Log information can be accessed via
`journalctl -u kibana.service`.