Skip to content

S3 Minio Client Configuration

Ceph-Based S3 Configuration

Euronodes S3 is Ceph-based. Minio Client works with standard S3 commands.

Configure

Configure Your Connection

mc config host add euronodes https://eu-west-1.euronodes.com \
  <YOUR_ACCESS_KEY> \
  <YOUR_SECRET_KEY>

Step 2: Test Your Connection

Verify Everything Works

# List your buckets
mc ls euronodes

# Create a test bucket
mc mb euronodes/<test_bucket_name>

# Upload a test file
echo "Hello Euronodes S3!" > test.txt
mc cp test.txt euronodes/<test_bucket_name>/

# Download the file back
mc cp euronodes/<test_bucket_name>/test.txt downloaded-test.txt

For general S3 setup, see S3 Configuration | For backup solutions, see Backup Solutions