I mentioned a few posts back that I was looking for a way to automate startup and shutdown of the servers. Thanks to some great sleuthing by Justin Moore at Granger Community Church, I got some scripts to start from. I had to make some modifications to suit our exact purposes, but that was relatively easy.
Ingredients:
Linux system with:
- Java Runtime (in Ubuntu, the package is sun-java6-jre)
- Amazon EC2 API Tools (installed in /opt/ec2/tools)
- Wowza Startup Packages (installed in /root/ec2)
- EC2 keys (installed in /root/ec2)
Note: Because these scripts are run from cron, you’ll need to put all your environment variables to run EC2 at the beginning of each one.
I have 6 separate versions of the startup and termination scripts, one for each server I need to start. I could roll it into one big script, but putting them in their own individual ones not only lets me do an individual machine manually, I can run them all in parallel from cron, which shortens the startup time.
The startup script functions as follows:
- Assign environment variables for EC2 and for the machine parameters
- Launch machine with ec2-run-instances, redirect output to a temporary file*
- Parse temporary file and extract the instance ID, and put it into an environment variable
- Write contents of instance ID environment variable to a file in /root/ec2 for use by the shutdown script
- Wait 30 seconds
- Start checking instance status every so we know when it’s running (wait 10 seconds to check again if it’s not)
- Attach any EBS volumes (Optional – I don’t currently need this, so it’s commented out)
- Assign Elastic IP
- Execute any additional commands via ssh (Optional, I don’t have any that need to run)
* The original scripts use /tmp/a, which is fine, but I had to make each script do its own temporary file since all 6 were running simultaneously and I ran into problems with getting the right Instance IDs set.
The shutdown script works like this:
- Query AWS for all running instances
- Issue EC2 termination call
- ???
- PROFIT!
Lastly, put it in your crontab:
# m h dom mon dow command
15 8 * * 0 /root/start-windows.sh
25 8 * * 0 /root/start-origin.sh
25 8 * * 0 /root/start-iphone.sh
25 8 * * 0 /root/start-repeater1.sh
25 8 * * 0 /root/start-repeater2.sh
25 8 * * 0 /root/start-repeater3.sh0 19 * * 0 /root/term-windows.sh
0 19 * * 0 /root/term-iphone.sh
0 19 * * 0 /root/term-origin.sh
0 19 * * 0 /root/term-repeater1.sh
0 19 * * 0 /root/term-repeater2.sh
0 19 * * 0 /root/term-repeater3.sh
This starts up all of them (except the Windows instance which needs more time) at 8:25 on Sunday morning and shuts them down at 7 on Sunday evening. (be sure that if you’re using GMT on your Linux box to take that into account).
If you’re using an encoder that can be started and stopped on a schedule, synchronize your times with this, and you’ll be golden. The Wowza EC2 images take about 60-90 seconds to fully get up and running, and the Windows one takes about 10-15 min. Currently, the Windows server pulls from the encoder via a 1:1 NAT rule, so the WME instance can be running before the EC2 server is going. When EC2 is ready, it simply connects to the encoder and is off and running.
You should check out using user-data scripts for automatically setting up instances:
http://alestic.com/2009/06/ec2-user-data-scripts
Thanks! This is very helpful. I’m using this to schedule my Wowza EC2 instance.
Thanks for the helpful EC2 scripting links and examples. I considered doing something on the server side of things but ended up with a batch file solution for use on a windows workstation:
http://headbackup.com/index.php/Amazon_EC2#Amazon_EC2_instance_start.2C_status_and_stop_batch_files
This method mainly shines for special events or unpredictable stop/start schedules since less technical volunteers are able to start, monitor and stop the EC2 instance. I’m only dealing with a single instance at this time, although my start script could be modified to handle multiple instances.
I suppose one could make a web interface to call your cronjob scripts and get the best of both worlds though…
Andrew
I do have a set of scripts on the windows machine as well (such as for spinning up an extra repeater), but your thought of using a web interface to call the scripts on the server is the next step. Problem is, my PHP/AJAX coding skills are pretty much nonexistent, so I’m at the mercy of finding someone to help me write them.
I was headed towards a Linux server based solution until I figured out a way to grab the instance ID so that I could assign the elastic IP from a batch file.
The other method I’ve considered is bundling the scripts into the instance startup so that they assign their own IP at boot time, then you don’t need another Linux server. Downside is that you have to send your keys to the instance as well…
Andrew