How do I use Minio Client with Wasabi?

Minio Client is a S3 compatible client that allows you to connect to Wasabi and perform operations on your Wasabi buckets.  To use Minio Client with Wasabi, follow these steps:

1. Download Minio Client and set executable permissions:

       wget https://dl.minio.io/client/mc/release/linux-amd64/mc
       chmod +x mc

2. Configure a Wasabi alias using your Wasabi keys:

       ./mc config host add <alias-name> https://s3.wasabisys.com <access-key> <secret-key>

3. Sample operation to list buckets:

      ./mc ls <alias-name>

Note that this example discusses the use of Wasabi's us-east-1 storage region. To use other Wasabi storage regions, please use the appropriate Wasabi service URL as described in this article

Have more questions? Submit a request