Changes between Version 15 and Version 16 of DICLOUD/GEC12tutorial


Ignore:
Timestamp:
10/18/11 09:55:17 (13 years ago)
Author:
David Irwin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DICLOUD/GEC12tutorial

    v15 v16  
    108108== Setup: Configure environment variables ==
    109109
     110We configure environment variables to add references to the access key id and secret access key as environment variables.  We also create copies of the keys and make them accessible to the !DiCloud web portal, which uses apache2.  Finally, we add references to the access key id and secret key to an S3 configuration file.
     111
    110112{{{
    111113$ cd ~/Tutorials/DiCloud
    112114$ nano environment
    113115
    114 [ Insert correct from geni_aws_credentials.txt
     116[ Insert correct values from geni_aws_credentials.txt
    115117    AWS_ACCESS_KEY_ID=
    116118    AWS_SECRET_ACCESS_KEY= ]
     
    127129
    128130Add Access Key Id and Secret Access Key to .s3cfg file.
    129 Copy .s3cfg file to ~geni
    130 
    131 {{{
     131Copy .s3cfg file to ~geni/.
     132
     133{{{
     134$ nano ~/Tutorials/DiCloud/.s3cfg
     135 
     136  [
     137    Modify lines specifying access_key and secret_key:
     138 
     139       access_key = xxx
     140       secret_key = xxx
     141  ]
     142
    132143$ cp ~/Tutorials/DiCloud/.s3cfg ~/.s3cfg
    133144}}}