I need to deploy a MinIO infrastructure on three nodes, where each nodes has a single local directory where they can save files in.
I read the MinIO Erasure Code Quickstart Guide, but I don't need MinIO to manage data replication on different local drives because all three nodes are on separated virtual machines on separated hardware and the local storage is already protected by ZFS.
For this reason I only MinIO replicates data between nodes creating three replicas of each files, but when I try to start it with a single data directory it fails:
minio@storage3:/usr/local/bin$ export MINIO_ACCESS_KEY=foo
minio@storage3:/usr/local/bin$ export MINIO_SECRET_KEY=bar
minio@storage3:/usr/local/bin$ ./minio server http://storage{1...3}/minio1
ERROR Invalid command line arguments: Invalid total number of endpoints for erasure mode.
> Please provide correct combination of local/remote paths.
HELP:
For more information, please refer to https://docs.min.io/docs/minio-erasure-code-quickstart-guide
Could you help me please?