You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Adds a `--checksum` flag to `mc cp`, `mc mirror`, `mc pipe`, and `mc put`
- Adds `--disable-multipart` to `mc put`
- Adds alias name to outputs of `mc ready`
- Adds flags to `mc admin heal`
Closes#1334
Copy file name to clipboardExpand all lines: source/reference/minio-mc/mc-ready.rst
+9-9
Original file line number
Diff line number
Diff line change
@@ -23,27 +23,27 @@ The :mc:`mc ready` command checks the status of a cluster and whether the cluste
23
23
24
24
.. tab-item:: EXAMPLE
25
25
26
-
The following sends a ``GET`` request to the cluster and returns its status.
26
+
The following sends a ``GET`` request to the cluster at alias ``myminio`` and returns its status.
27
27
28
28
.. code-block:: shell
29
29
:class: copyable
30
30
31
-
mc ready play
31
+
mc ready myminio
32
32
33
-
The command sends a ``GET`` request to the deployment at the :mc:`~mc alias` ``play``.'
33
+
The command sends a ``GET`` request to the deployment at the :mc:`~mc alias` ``myminio``.'
34
34
The command repeats the request until it is successful.
35
35
36
-
The output before a cluster is ready resembles the following:
36
+
The output before the cluster at alias ``myminio`` is ready resembles the following:
37
37
38
-
.. code-block:: shell
38
+
.. code-block:: text
39
39
40
-
The cluster is unreachable: Get "http://play.min.io:9000/minio/health/cluster": dial tcp 127.0.0.1:9000: connect: connection refused
40
+
The cluster is `myminio` is unreachable: Get "http://myminio.example.com:9000/minio/health/cluster": dial tcp 198.51.100.0:9000: connect: connection refused
41
41
42
-
Once the request succeeds, the output resembles the following:
42
+
Once the request succeeds in connecting to the ``myminio`` deployment, the output resembles the following:
0 commit comments