Versions Compared

Key

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

...

  1. Get your security credentials from your AWS Account
    • Access Key ID
    • Secret Access Key
  2. Set up your configuration files for the AWS tools installed on the shared server
    1. Create the configuration file for s3curl command line tool
      Code Block
      ~>cat .s3curl 
      #!/bin/perl
      %awsSecretAccessKeys = (
          YourUsername => {
              id => 'YourAccessKeyID',
              key => 'YourSecretAccessKey',
          },
      );
      ~>
    2. Test that you can run s3curl
      Code Block
      
      /work/platform/bin/s3curl.pl --id $USER https://s3.amazonaws.com/sagetest-$USER/
      
    3. Create the configuration file for the Elastic Map Reduce command line tool
      Code Block
      ~>cat YourUsername-credentials.json 
      {
      "access_id": "YourAccessKeyID",
      "private_key": "YourSecretAccessKey",
      "keypair": "SageKeyPair",
      "key-pair-file": "/home/$user/SageKeyPair.pem",
      "log_uri": "s3n://sagetest_YourUsername/logs/",
      "region": "us-east-1"
      }~