-
-
Save tinderfields/2863348 to your computer and use it in GitHub Desktop.
Install chef onto ubuntu 14.04
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
root@Ubuntu-1204-precise-64-minimal ~ # | |
apt-get -y update | |
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev | |
cd /tmp | |
# Look at getting the latest version | |
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz | |
tar -xvzf ruby-1.9.3-p125.tar.gz | |
cd ruby-1.9.3-p125/ | |
./configure --prefix=/usr/local | |
make | |
make install | |
gem install chef ruby-shadow mysql --no-ri --no-rdoc | |
root@Ubuntu-1204-precise-64-minimal ~ # ruby -v | |
ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-linux] | |
root@Ubuntu-1204-precise-64-minimal ~ # chef-solo -v | |
Chef: 0.10.10 | |
exit | |
# Add entry to .ssh/config | |
brew install ssh-copy-id | |
ssh-copy-id -i ~/.ssh/id_rsa.pub hetzner | |
# See | |
http://www.thegeekstuff.com/2008/11/3-steps-to-perform-ssh-login-without-password-using-ssh-keygen-ssh-copy-id/ | |
# CD to chef dir and | |
rsync -r . hetzner:/etc/chef | |
ssh hetzner "chef-solo" | |
# Once setup with librarian use | |
librarian-chef install && rsync -r . hetzner:/etc/chef && ssh hetzner "chef-solo" | |
# Ideally we could set this up with scripts as per http://www.opinionatedprogrammer.com/2011/06/chef-solo-tutorial-managing-a-single-server-with-chef/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment