Created
November 26, 2014 21:46
-
-
Save jodok/96116f000f1ff72f0134 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
mkfs.ext4 /dev/sdb | |
mkfs.ext4 /dev/sdc | |
mkdir /data | |
mkdir /data/data{1,2} | |
mount /dev/sdb /data/data1 | |
mount /dev/sdc /data/data2 | |
curl -w "\n" https://github.com/mfussenegger.keys >> /home/ec2-user/.ssh/authorized_keys | |
curl -w "\n" https://github.com/dobe.keys >> /home/ec2-user/.ssh/authorized_keys | |
curl -w "\n" https://github.com/jodok.keys >> /home/ec2-user/.ssh/authorized_keys | |
chown -R crate.crate /data | |
yum install -y docker | |
service docker start | |
docker pull crate:latest | |
HOSTS="st01.aws.fir.io:4300,st02.aws.fir.io:4300,st03.aws.fir.io:4300,st04.aws.fir.io:4300,st05.aws.fir.io:4300,st06.aws.fir.io:4300,st07.aws.fir.io:4300,st08.aws.fir.io:4300,st09.aws.fir.io:4300,st10.aws.fir.io:4300,st11.aws.fir.io:4300,st12.aws.fir.io:4300" | |
PRIVATE_IP=$(curl http://169.254.169.254/latest/meta-data/local-ipv4) | |
docker run -d -p 4200:4200 \ | |
-p 4300:4300 \ | |
--volume /data:/data \ | |
--env CRATE_HEAP_SIZE=8g \ | |
crate \ | |
crate \ | |
-Des.path.data="/data/data1,/data/data2" \ | |
-Des.multicast.enabled=false \ | |
-Des.network.publish_host=$PRIVATE_IP \ | |
-Des.discovery.zen.ping.unicast.hosts=$HOSTS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment