mirror of https://github.com/minio/minio.git
fix: multi-tenant deployment guide to use ellipses format (#10192)
This commit is contained in:
parent
6ae30b21c9
commit
d90ab904e7
|
@ -27,9 +27,9 @@ minio server --address :9003 /data/tenant3
|
||||||
Use the following commands to host 3 tenants on multiple drives:
|
Use the following commands to host 3 tenants on multiple drives:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
minio server --address :9001 /disk1/data/tenant1 /disk2/data/tenant1 /disk3/data/tenant1 /disk4/data/tenant1
|
minio server --address :9001 /disk{1...4}/data/tenant1
|
||||||
minio server --address :9002 /disk1/data/tenant2 /disk2/data/tenant2 /disk3/data/tenant2 /disk4/data/tenant2
|
minio server --address :9002 /disk{1...4}/data/tenant2
|
||||||
minio server --address :9003 /disk1/data/tenant3 /disk2/data/tenant3 /disk3/data/tenant3 /disk4/data/tenant3
|
minio server --address :9003 /disk{1...4}/data/tenant3
|
||||||
```
|
```
|
||||||
|
|
||||||
![Example-2](https://github.com/minio/minio/blob/master/docs/screenshots/Example-2.jpg?raw=true)
|
![Example-2](https://github.com/minio/minio/blob/master/docs/screenshots/Example-2.jpg?raw=true)
|
||||||
|
@ -45,15 +45,15 @@ Use the following commands to host 3 tenants on a 4-node distributed configurati
|
||||||
```sh
|
```sh
|
||||||
export MINIO_ACCESS_KEY=<TENANT1_ACCESS_KEY>
|
export MINIO_ACCESS_KEY=<TENANT1_ACCESS_KEY>
|
||||||
export MINIO_SECRET_KEY=<TENANT1_SECRET_KEY>
|
export MINIO_SECRET_KEY=<TENANT1_SECRET_KEY>
|
||||||
minio server --address :9001 http://192.168.10.11/data/tenant1 http://192.168.10.12/data/tenant1 http://192.168.10.13/data/tenant1 http://192.168.10.14/data/tenant1
|
minio server --address :9001 http://192.168.10.1{1...4}/data/tenant1
|
||||||
|
|
||||||
export MINIO_ACCESS_KEY=<TENANT2_ACCESS_KEY>
|
export MINIO_ACCESS_KEY=<TENANT2_ACCESS_KEY>
|
||||||
export MINIO_SECRET_KEY=<TENANT2_SECRET_KEY>
|
export MINIO_SECRET_KEY=<TENANT2_SECRET_KEY>
|
||||||
minio server --address :9002 http://192.168.10.11/data/tenant2 http://192.168.10.12/data/tenant2 http://192.168.10.13/data/tenant2 http://192.168.10.14/data/tenant2
|
minio server --address :9002 http://192.168.10.1{1...4}/data/tenant2
|
||||||
|
|
||||||
export MINIO_ACCESS_KEY=<TENANT3_ACCESS_KEY>
|
export MINIO_ACCESS_KEY=<TENANT3_ACCESS_KEY>
|
||||||
export MINIO_SECRET_KEY=<TENANT3_SECRET_KEY>
|
export MINIO_SECRET_KEY=<TENANT3_SECRET_KEY>
|
||||||
minio server --address :9003 http://192.168.10.11/data/tenant3 http://192.168.10.12/data/tenant3 http://192.168.10.13/data/tenant3 http://192.168.10.14/data/tenant3
|
minio server --address :9003 http://192.168.10.1{1...4}/data/tenant3
|
||||||
```
|
```
|
||||||
|
|
||||||
**Note:** Execute the commands on all 4 nodes.
|
**Note:** Execute the commands on all 4 nodes.
|
||||||
|
@ -64,4 +64,4 @@ minio server --address :9003 http://192.168.10.11/data/tenant3 http://192.168.10
|
||||||
|
|
||||||
## <a name="cloud-scale-deployment"></a>Cloud Scale Deployment
|
## <a name="cloud-scale-deployment"></a>Cloud Scale Deployment
|
||||||
|
|
||||||
A container orchestration platform (e.g. Kubernetes, DC/OS, or Docker Swarm) is recommended for large-scale, multi-tenant MinIO deployments. See the [MinIO Deployment Quickstart Guide](https://docs.min.io/docs/minio-deployment-quickstart-guide) to get started with MinIO on orchestration platforms.
|
A container orchestration platform (e.g. Kubernetes) is recommended for large-scale, multi-tenant MinIO deployments. See the [MinIO Deployment Quickstart Guide](https://docs.min.io/docs/minio-deployment-quickstart-guide) to get started with MinIO on orchestration platforms.
|
||||||
|
|
Loading…
Reference in New Issue