-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.TXT
63 lines (47 loc) · 2.47 KB
/
README.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Auto Scaling Command Line Tools
===============================
Installation:
-------------
1. Ensure that JAVA version 6u37 or higher is installed on your system: (java -version)
2. Unzip the deployment zip file
3. Set the following environment variables:
3.1 AWS_AUTO_SCALING_HOME - The directory where the deployment files were copied to
check with:
Unix: ls ${AWS_AUTO_SCALING_HOME}/bin should list as-create-auto-scaling-group ...)
Windows: dir "%AWS_AUTO_SCALING_HOME%\bin" should list as-create-auto-scaling-group ...)
3.2 JAVA_HOME - Java Installation home directory
4. Add ${AWS_AUTO_SCALING_HOME}/bin (in Windows: "%AWS_AUTO_SCALING_HOME%\bin") to your path
Configuration:
--------------
Provide the command line tool with your AWS user credentials. There
are two ways you can provide credentails: AWS keys, or using X.509
certificates.
Using AWS Keys
--------------
1. Create a credential file: The deployment includes a template file ${AWS_AUTO_SCALING_HOME}/credential-file-path.template.
Edit a copy of this file to add your information.
On UNIX, limit permissions to the owner of the credential file: $ chmod 600 <the file created above>.
2. There are several ways to provide your credential information:
a. Set the following environment variable: AWS_CREDENTIAL_FILE=<the file created in 1>
b. Alternatively, provide the following option with every command --aws-credential-file <the file created in 1>
c. Explicitly specify credentials on the command line: --I ACCESS_KEY --S SECRET_KEY
Using X.509 Certs
-----------------
1. Save your cetificate and private keys to files: e.g. my-cert.pem
and my-pk.pem.
2. There are two ways to provide the certificate information to the
command line tool
a. Set the following environment variables:
EC2_CERT=/path/to/cert/file
EC2_PRIVATE_KEY=/path/to/key/file
b. Specify the files directly on command-line for every command
<command> --ec2-cert-file-path=/path/to/cert/file --ec2-private-key-file-path=/path/to/key/file
Running:
---------
1. To check that your setup works properly, run the following command:
$ as-cmd --help
You should see the usage page for all Auto Scaling commands
$ as-describe-auto-scaling-groups --headers
You should see a header line. If you have auto scaling groups
already configured, you will see a description line for each
auto scaling group