Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents


Pre-requisites

Info

EWC S3 endpoint URL is: https://s3.waw3-1.cloudferro.com

Info

For private buckets you need the access keys to your S3 bucket ready. Typically you'll find your access key and secret key in Morpheus under Tools -> Cypher. 

CLI libraries

Some of the CLI libraries that can be used to access s3 buckets are described below:

rclone

Info

it works for public and private buckets after configuration

...

Code Block
rclone ls s3://bucket_name/


s3cmd 

Warning

It works only for private buckets

...

Code Block
s3cmd ls s3://bucket_name/


awscli

Access private bucket

1. Run aws configure  and follow the interactive configuration for a new remote to setup the access_key and the secret_key to be used by the CLI.

...

Code Block
aws s3 ls --endpoint-url s3_endpoint_url s3://bucket_name/

Access public bucket

Run the following command with your 'bucket_name' for a public bucket:

...