Vagrant
• Vagrant uses VirtualBox to build configurable,
lightweight, and portable virtual machines
dynamically
• Open Source: MIT license
• It support more providers recently:
• VMware Fusion
• AWS EC2
• Rackspace
Server provisioning
• Serverprovisioning is a set of actions to
prepare a server with appropriate systems,
data and software, and make it ready for
network operation. (from wikipedia)
74.
Server provisioning
• Serverprovisioning is a set of actions to
prepare a server with appropriate systems,
data and software, and make it ready for
network operation. (from wikipedia)
• 就是裝 server 啦
Chef Example
package "nginx"
service"nginx" do
supports :status => true, :restart => true, :reload => true
action [:enable, :start]
end
template "/etc/nginx/nginx.conf" do
source "nginx.conf.erb"
notifies :reload, "service[nginx]"
end