here come the Beta Amazon EC2 images! Just press the "launch AMI" link and fire them up [:)]
[LEFT]
[FONT=Courier New]
eu-west-1 (Ireland)
ASG 9.000-8 (x86_64 ebs):: ami-b71713c3 :: https://console.aws.amazon.com/ec2/home?region=eu-west-1#launchAmi=ami-b71713c3
us-east-1 (North Virginia)
ASG 9.000-8 (x86_64 ebs):: ami-31b81458 :: https://console.aws.amazon.com/ec2/home?region=us-east-1#launchAmi=ami-31b81458
us-west-1 (Northern California)
ASG 9.000-8 (x86_64 ebs):: ami-eb3510ae :: https://console.aws.amazon.com/ec2/home?region=us-west-1#launchAmi=ami-eb3510ae
us-west-2 (Oregon)
ASG 9.000-8 (x86_64 ebs):: ami-02f17e32 :: https://console.aws.amazon.com/ec2/home?region=us-west-2#launchAmi=ami-02f17e32
ap-northeast-1 (Tokyo)
ASG 9.000-8 (x86_64 ebs):: ami-42d06243 :: https://console.aws.amazon.com/ec2/home?region=ap-northeast-1#launchAmi=ami-42d06243
ap-southeast-1 (Singapore)
ASG 9.000-8 (x86_64 ebs):: ami-0823625a :: https://console.aws.amazon.com/ec2/home?region=ap-southeast-1#launchAmi=ami-0823625a
sa-east-1 (Sao Paulo)
ASG 9.000-8 (x86_64 ebs):: ami-ce2bf5d3 :: https://console.aws.amazon.com/ec2/home?region=sa-east-1#launchAmi=ami-ce2bf5d3
[/FONT]
There are a few new features regarding the EC2 support:
- SSH Key Pair (ec2-user, loginuser and root): If SSH Key Pair is set during AMI launch, SSH Keys will be installed for ec2-user, loginuser and root. Root access is disabled by default and must be enabled via SSH configuration. Login with ec2-user will show you the basic setup and brings you afterwards directly to the confd-client configuration program.
- User Data: Its possible to run Basic Setup and set an ACC server via User Data field. If thats not sufficient for you, you could also run custom shell scripts!
- 30GB disk: EBS volume increased to 30GB storage
Examples:
Start micro instance in Europe with basic setup and SSH access:
[FONT=Courier New]ec2-run-instances --region eu-west-1 -t t1.micro -k my_ec2_key -d "{ hostname => 'ec2-demo.local', organization => 'Astaro', city => 'Karlsruhe', country => 'de', email => 'admin@domain.com', password => 'secret' }" ami-19ba836d[/FONT]
Start small instance in North Virginia with basic setup and ACC:
[FONT=Courier New]ec2-run-instances --region us-east-1 -t m1.small -d "{ hostname => 'ec2-demo.local', organization => 'Astaro', city => 'Karlsruhe', country => 'de', email => 'admin@domain.com', password => 'secret', acc_server => 'my_acc_server.name', acc_secret => 'secret' }" ami-[/FONT][FONT=Courier New]94934ffd[/FONT]
Start medium instance in [FONT=Courier New]Tokyo with custom script:[/FONT]
[FONT=Courier New]ec2-run-instances --region [/FONT][FONT=Courier New]ap-northeast-1[/FONT][FONT=Courier New] -t c1.medium -d '#!/bin/bash
echo "Hello World"' ami-[/FONT][FONT=Courier New]aac273ab[/FONT]
Run Basic Setup via SSH:
[FONT=Courier New]ssh -l ec2-user ec2-....compute.amazonaws.com[/FONT]
Enable SSH root login on EC2 instance:
[FONT=Courier New]ssh -l ec2-user ec2-....compute.amazonaws.com set ssh root_login without-password[/FONT]
Have fun
Ulrich