Created
April 28, 2016 21:49
-
-
Save jvwing/b422cafda144296042194c429245ea9d to your computer and use it in GitHub Desktop.
Cloud-Init Template for running StreamSets DC on EC2 (or other service)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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