2013-07-01 20:55:01 -04:00
|
|
|
# Before running, you will need to download the EC2 tools from http://aws.amazon.com/developertools/351
|
|
|
|
# and then setup your EC2_HOME and PATH variables (or similar):
|
|
|
|
#
|
|
|
|
# # Setup environment for ec2-api-tools
|
2013-07-01 22:34:43 -04:00
|
|
|
# export EC2_HOME=/path/to/ec2-api-tools-1.6.7.4/
|
|
|
|
# export PATH=$PATH:$EC2_HOME/bin
|
2013-07-02 20:17:36 -04:00
|
|
|
# export AWS_ACCESS_KEY=
|
|
|
|
# export AWS_SECRET_KEY=
|
2013-07-01 20:55:01 -04:00
|
|
|
|
2013-07-01 22:34:43 -04:00
|
|
|
# Check for ec2 commands we require and die if they're missing
|
|
|
|
type ec2-create-keypair >/dev/null 2>&1 || { echo >&2 "I require ec2-create-keypair but it's not installed. Aborting."; exit 1; }
|
|
|
|
type ec2-create-group >/dev/null 2>&1 || { echo >&2 "I require ec2-create-group but it's not installed. Aborting."; exit 1; }
|
|
|
|
type ec2-authorize >/dev/null 2>&1 || { echo >&2 "I require ec2-authorize but it's not installed. Aborting."; exit 1; }
|
|
|
|
type ec2-run-instances >/dev/null 2>&1 || { echo >&2 "I require ec2-run-instances but it's not installed. Aborting."; exit 1; }
|
|
|
|
type ec2-describe-instances >/dev/null 2>&1 || { echo >&2 "I require ec2-describe-instances but it's not installed. Aborting."; exit 1; }
|
2013-07-01 20:55:01 -04:00
|
|
|
|
|
|
|
# Create a keypair for our servers
|
2013-07-02 15:46:14 -04:00
|
|
|
echo "Removing old keypair for druid..."
|
|
|
|
ec2-delete-keypair druid-keypair
|
|
|
|
echo "Creating new keypair for druid..."
|
2013-07-01 20:55:01 -04:00
|
|
|
ec2-create-keypair druid-keypair > druid-keypair
|
|
|
|
chmod 0600 druid-keypair
|
|
|
|
mv druid-keypair ~/.ssh/
|
|
|
|
|
|
|
|
# Create a security group for our servers
|
2013-07-02 20:17:36 -04:00
|
|
|
echo "Creating a new security group for druid..."
|
2013-07-01 20:55:01 -04:00
|
|
|
ec2-create-group druid-group -d "Druid Cluster"
|
|
|
|
|
|
|
|
# Create rules that allow necessary services in our group
|
2013-07-02 20:17:36 -04:00
|
|
|
echo "Creating new firewall rules for druid..."
|
2013-07-01 20:55:01 -04:00
|
|
|
# SSH from outside
|
|
|
|
ec2-authorize druid-group -P tcp -p 22
|
|
|
|
# Enable all traffic within group
|
|
|
|
ec2-authorize druid-group -P tcp -p 1-65535 -o druid-group
|
|
|
|
ec2-authorize druid-group -P udp -p 1-65535 -o druid-group
|
|
|
|
|
2013-07-02 20:17:36 -04:00
|
|
|
echo "Booting a single small instance for druid..."
|
2013-07-01 20:55:01 -04:00
|
|
|
# Use ami ami-e7582d8e - Alestic Ubuntu 12.04 us-east
|
2013-07-01 22:34:43 -04:00
|
|
|
INSTANCE_ID=$(ec2-run-instances ami-e7582d8e -n 1 -g druid-group -k druid-keypair --instance-type m1.small| awk '/INSTANCE/{print $2}')
|
2013-07-02 15:46:14 -04:00
|
|
|
while true; do
|
|
|
|
sleep 1
|
2013-07-03 22:53:06 -04:00
|
|
|
INSTANCE_STATUS=$(ec2-describe-instances|grep INSTANCE|grep $INSTANCE_ID|cut -f6)
|
2013-07-02 15:46:14 -04:00
|
|
|
if [ $INSTANCE_STATUS == "running" ]
|
|
|
|
then
|
|
|
|
echo "Instance $INSTANCE_ID is status $INSTANCE_STATUS..."
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Wait for the instance to come up
|
|
|
|
echo "Waiting 60 seconds for instance $INSTANCE_ID to boot..."
|
|
|
|
sleep 60
|
2013-07-01 20:55:01 -04:00
|
|
|
|
|
|
|
# Get hostname and ssh with the key we created, and ssh there
|
2013-07-02 15:46:14 -04:00
|
|
|
INSTANCE_ADDRESS=`ec2-describe-instances|grep 'INSTANCE'|grep $INSTANCE_ID|cut -f4`
|
2013-07-02 20:17:36 -04:00
|
|
|
echo "Connecting to $INSTANCE_ADDRESS to prepare environment for druid..."
|
2013-07-08 20:30:37 -04:00
|
|
|
scp -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ./ec2/env.sh ubuntu@${INSTANCE_ADDRESS}:
|
2013-07-09 21:41:06 -04:00
|
|
|
ssh -q -f -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ubuntu@${INSTANCE_ADDRESS} 'chmod +x ./env.sh;./env.sh'
|
2013-07-01 20:55:01 -04:00
|
|
|
|
|
|
|
echo "Prepared $INSTANCE_ADDRESS for druid."
|
2013-07-03 22:53:06 -04:00
|
|
|
|
|
|
|
# Now to scp a tarball up that can run druid!
|
|
|
|
if [ -f ../../services/target/druid-services-*-SNAPSHOT-bin.tar.gz ];
|
|
|
|
then
|
2013-07-05 16:40:45 -04:00
|
|
|
echo "Uploading druid tarball to server..."
|
2013-07-03 22:53:06 -04:00
|
|
|
scp -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ../../services/target/druid-services-*-bin.tar.gz ubuntu@${INSTANCE_ADDRESS}:
|
|
|
|
else
|
|
|
|
echo "ERROR - package not built!"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Now boot druid parts
|
2013-07-08 20:30:37 -04:00
|
|
|
scp -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ./ec2/run.sh ubuntu@${INSTANCE_ADDRESS}:
|
2013-07-09 21:41:06 -04:00
|
|
|
ssh -q -f -i ~/.ssh/druid-keypair -o StrictHostKeyChecking=no ubuntu@${INSTANCE_ADDRESS} 'chmod +x ./run.sh;./run.sh'
|
2013-07-05 21:03:37 -04:00
|
|
|
|
|
|
|
echo "Druid booting complete!"
|
|
|
|
echo "ssh -i ~/.ssh/druid-keypair ubuntu@${INSTANCE_ADDRESS} #to connect"
|