Skip to content

Instantly share code, notes, and snippets.

@jvwing
Created April 28, 2016 21:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jvwing/b422cafda144296042194c429245ea9d to your computer and use it in GitHub Desktop.
Save jvwing/b422cafda144296042194c429245ea9d to your computer and use it in GitHub Desktop.
Cloud-Init Template for running StreamSets DC on EC2 (or other service)
#cloud-config
runcmd:
- echo "$(date) - Starting StreamSets Data Collector Install"
- yum install -y https://archives.streamsets.com/datacollector/1.3.0.1/rpm/streamsets-datacollector-1.3.0.1-1.noarch.rpm
- service sdc start
- chkconfig --add sdc
- echo "$(date) - Finished StreamSets Data Collector Install"
# StreamSets UI will be at http://<public dns>:18630/, u:admin, p:admin
# Be sure to open port 18630 on your security group, or use SSH port forwarding
# See https://streamsets.com/opensource/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment