Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add stop instructions [MC-2872] #383

Merged
merged 2 commits into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/modules/getting-started/pages/install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,32 @@ mc-start.cmd
--
====


== Stopping Management Center via command line
The following command stops all Management Center processes that are started with either `hz-mc start` or `mc-start.cmd` commands:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we add info that it stops MCs of the same version?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was thinking and maybe we should even more specifically mention that the processes started the other way like with java -jar will NOT be stopped

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@promanenko Added a version notice.

@anatoly-hazelcast I think the part that are started with either hz-mc start or mc-start.cmd commands covers these cases.
If the user starts MC with java -jar or any other way, we don't promise anything here.

[tabs]
====
Linux and Mac::
+
--
[source,bash,subs="attributes+"]
----
hz-mc stop
----
--

Windows::
+
--
[source,shell,subs="attributes+"]
----
mc-stop.cmd
----
--
====
NOTE: These commands stop Management Center processes that have exactly the same version as the script. If you have multiple versions of Management Center running,
you need to stop each version using its corresponding script.

== Snapshot versions

Development versions of an upcoming release are available as snapshots. To use the most recent snapshot version of Management Center, use the following:
Expand Down
Loading