Versions Compared

Key

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

...

  1. Create the configuration file if it does not exist:

    No Format
    touch ~/.s3cfg


  2. Edit the file and set up at least the following parameters. You will need to replace <provider> by either ecmwf or eumetsat (your storage provider), as well as <youraccesskey> and <yoursecretkey> that will be given to you by the provider

    No Format
    host_base = storage.<provider>.europeanweather.cloud
    host_bucket = 
    access_key = <youraccesskey>
    secret_key = <yoursecretkey>
    use_https = True
    
    
    # needed for EUMETSAT, as the provider currently supplies a "cloudferro" SSL certificate.  Alternatively, change the host_base above to s3.waw3-1.cloudferro.com
    check_ssl_certificate = False


Basic tasks

If you type s3cmd -h you will see the different options of the command, but here are the basics:

...