- Dec 24 2022 mc release moves `mc admin bucket remote` commands to mc replicate - Updates `mc replicate add | update | ls | rm | status` commands - Adds pointers from `mc admin bucket remote` command to relevant new pages Closes #681 Partially addresses #691 - Corrects minor formatting error in glossary to address build errors
3.0 KiB
mc replicate status
minio
Table of Contents
mc replicate status
Syntax
The mc replicate status
command displays the replication status <minio-bucket-replication-serverside>
of a MinIO bucket. The status also lists the remote target path or
location.
EXAMPLE
The following command displays the current replication status of the
mydata
bucket on the myminio
MinIO
deployment:
mc replicate status myminio/mydata
SYNTAX
The command has the following syntax:
mc [GLOBALFLAGS] replicate status TARGET
[--limit-upload value]
[--limit-download value]
Parameters
ALIAS
The alias <alias>
of the MinIO deployment and full
path to the bucket or bucket prefix for which to display the replication
status. For example:
mc replicate status myminio/mybucket
--limit-download
Limit download rates to no more than a specified rate in KiB/s, MiB/s, or GiB/s. Valid units include:
B
for bytesK
for kilobytesG
for gigabytesT
for terabytesKi
for kibibytesGi
for gibibytesTi
for tebibytes
For example, to limit download rates to no more than 1 GiB/s, use the following:
--limit-download 1G
If not specified, MinIO uses an unlimited download rate.
--limit-upload
Limit upload rates to no more than the specified rate in KiB/s, MiB/s, or GiB/s. Valid units include:
B
for bytesK
for kilobytesG
for gigabytesT
for terabytesKi
for kibibytesGi
for gibibytesTi
for tebibytes
For example, to limit upload rates to no more than 1 GiB/s, use the following:
--limit-upload 1G
If not specified, MinIO uses an unlimited upload rate.
Global Flags
Examples
Display Replication Status
Use mc replicate status
to show bucket replication
status:
mc replicate status ALIAS/PATH
- Replace
ALIAS <mc replicate status ALIAS>
with thealias <mc alias>
of the MinIO deployment. - Replace
PATH <mc replicate status ALIAS>
with the path to the bucket or bucket prefix.