MinIO
raidrivecli add minio --bucket <bucket> --endpoint <address>
If you add storage without any options, you will be prompted to enter a Access Key ID and Secret Access Key.
$ raidrivecli add minio --bucket mybucket \
--endpoint https://host.minio-server.com
Access Key ID: <access-key-id>
Secret Access Key: ********
Alternatively, a Access Key ID or Secret Access Key can be specified as options.
raidrivecli add minio --bucket <bucket> --endpoint <address> \
--access-key-id <key>
raidrivecli add minio --bucket <bucket> --endpoint <address> \
--access-key-id <key> \
--secret-access-key [secret]
Warning
Shell commands are logged in history. If possible, we recommend not specifying the --secret-access-key
option with a value.
If a mount directory is not specified, it will be mounted to a directory such as /mnt/minio
under /mnt
. To specify the mount directory, use the --mount-path
option.
raidrivecli add minio --bucket mybucket \
--endpoint https://abcd.region.idrive2-ee.com \
--mount-path /myservices/minio
ADDITIONAL OPTIONS
--bucket <bucket> bucket
--endpoint <address> address (e.g. https://host.example.com)
--access-key-id <key> access key id
--secret-access-key [secret] secret access key
SEE ALSO