Skip to content

Instantly share code, notes, and snippets.

@curtismitchell
Created April 16, 2015 20:19
Show Gist options
  • Save curtismitchell/d867adbc3dda7131de0b to your computer and use it in GitHub Desktop.
Save curtismitchell/d867adbc3dda7131de0b to your computer and use it in GitHub Desktop.
chef server 12 install from yum
#!bin/sh
sudo yum -y update
wget -O https://web-dl.packagecloud.io/chef/stable/packages/el/6/chef-server-core-12.0.7-1.el6.x86_64.rpm
sudo rpm -Uvh chef-server-core-12.0.7-1.el6.x86_64.rpm
sudo chef-server-ctl reconfigure
sudo chef-server-ctl user-create curtismitchell Curtis Mitchell curtis.mitchell@peoplefluent.com 5iveL!fe --filename /vagrant/userkey.pem
sudo chef-server-ctl org-create pf PeopleFluent --association_user curtismitchell --filename /vagrant/chef-validator.pem
sudo chef-server-ctl install opscode-manage
sudo chef-server-ctl reconfigure
sudo chef-server-ctl install opscode-push-jobs-server
sudo chef-server-ctl reconfigure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment