mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
25ec068aef
* [DOCS] Added link to the upgrade guide & tweaked the intro. * [DOCS] Bumped upgrade topic up to the top level of the TOC
20 lines
594 B
Plaintext
20 lines
594 B
Plaintext
* If you are running Elasticsearch with `systemd`:
|
|
+
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
sudo systemctl stop elasticsearch.service
|
|
--------------------------------------------------
|
|
|
|
* If you are running Elasticsearch with SysV `init`:
|
|
+
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
sudo -i service elasticsearch stop
|
|
--------------------------------------------------
|
|
|
|
* If you are running Elasticsearch as a daemon:
|
|
+
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
kill $(cat pid)
|
|
-------------------------------------------------- |