Versions Compared

Key

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

Table of Contents

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. 

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

1. Run rclone config and follow the interactive configuration for a new remote

Image Added

Then insert n and follow the instructions:

name: s3

storage option  : 5

Image Added

s3 provider : 22

Image Added

env_auth : leave default

access_key_id : your access key

secret_key_id : your secret key

region : leave default

endpoint : s3 bucket endpint URL https://s3.waw3-1.cloudferro.com

location_constraint: leave default

Image Added

acl : select the one that best fits your use case

Image Added

Finalize it and save

Image Added


Image Added

2.

...

Run the following command with your 'bucket_name'

...

:

Code Block
rclone ls s3://bucket_name/


s3cmd 

Warning

It works only for private buckets

...

1. Run s3cmd --configure and follow the interactive configuration for a new remote

...

Image Added

2. Run the following command with your 'bucket_name' 

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.

Image Added

2. Run the following command with your 'bucket_name'

...

for a private bucket

...

:

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:

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