S3 Minio Client Configuration
Step 1: Configure Euronodes S3
Configure Your Connection
# Replace with your actual credentials
mc config host add euronodes https://eu-west-1.euronodes.com \
YOUR_ACCESS_KEY \
YOUR_SECRET_KEY \
--api S3v4
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