mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 19:13:14 -04:00
* [DOCS] Update install docs for security ON by default * Incorporating reviewer feedback and expanding RPM + Debian steps * Update Debian and RPM enrollment token process
22 lines
No EOL
692 B
Text
22 lines
No EOL
692 B
Text
==== Run {kib} with `systemd`
|
|
|
|
To configure {kib} to start automatically when the system starts,
|
|
run the following commands:
|
|
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
sudo /bin/systemctl daemon-reload
|
|
sudo /bin/systemctl enable kibana.service
|
|
--------------------------------------------------
|
|
|
|
{kib} 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 {kib} was started
|
|
successfully or not. Log information can be accessed via
|
|
`journalctl -u kibana.service`. |