joohn

Zenoss Core 5b1 EC2 installation

Jul 17th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. Instance
  2. c3.2xlarge: 8CPU, 15GB RAM, 20GB SSD ESB
  3. x86_64 Ubuntu 14.04 AMI
  4. Security Group: inbound/outbound: any
  5.  
  6. sudo su -;
  7. apt-get update;ufw disable;
  8. su -c "cat <<EOF >> /etc/security/limits.conf
  9. * hard nofile 1048576
  10. * soft nofile 1048576
  11. root hard nofile 1048576
  12. root soft nofile 1048576
  13. EOF
  14. ";
  15.  
  16. sudo su -;
  17. apt-get install -y curl nfs-kernel-server nfs-common net-tools;
  18. curl -sL https://get.docker.io/ubuntu/ | sh;
  19. STEM="http://sourceforge.net/projects/zenoss";STEM="${STEM}/files/zenoss-beta/builds/europa-521";wget ${STEM}/docker-smuggle_2.24.2-1_amd64.deb;dpkg -i docker-smuggle_*.deb;apt-get install -f;wget ${STEM}/serviced-zenoss-core_0.3.70+1.0.0b1-521~trusty_amd64.deb;dpkg -i serviced*.deb;apt-get install -f;docker pull quay.io/zenossinc/zenoss-core-testing:5.0.0b1_521 || echo "DOWNLOAD FAILED";docker pull quay.io/zenossinc/opentsdb:v1 || echo "DOWNLOAD FAILED";docker pull quay.io/zenossinc/hbase:v1 || echo "DOWNLOAD FAILED";start serviced;ifconfig;
  20.  
  21. serviced host add <IPv4-Address>:4979 default
  22.  
  23. adduser zenoss;usermod -G docker -a zenoss;usermod -G sudo -a zenoss;TEMPLATEID=$(sudo serviced template add /opt/serviced/templates/zenoss-core-5.0.0b1_521.json); serviced template deploy $TEMPLATEID default zenoss;
Advertisement
Add Comment
Please, Sign In to add comment