Vagrant
提供一个纯粹的隔离的从纯净的操作系统级别开始部署的分布式应用来说,用它来启动和做虚拟机配置
起源
Vagrant
经常出现在开源项目使用它作为分布式开发的环境配置。
使用vagrant搭建的开发测试环境,使用Vagrantfile
文件中定义了一台主机。
➜ netplugin git:(master) ✗ vagrant status
Current machine states:
default running (virtualbox)
This environment represents multiple VMs. The VMs are all listed
above with their current state. For more information about a specific
VM, run `vagrant status NAME`.
Vagrant是hashicorp这家公司的产品,这家公司主要做数据中心PAAS和虚拟化,其名下大名鼎鼎的产品有Consul
、Vault
、Nomad
、Terraform
。他们的产品都是基于Open Source的Github地址。
用途
Vagrant是用来管理虚拟机的,如VirtualBox、VMware、AWS等,主要好处是可以提供一个可配置、可移植和复用的软件环境,可以使用shell、chef、puppet等工具部署。所以vagrant不能单独使用,如果你用它来管理自己的开发环境的话,必须在自己的电脑里安装了虚拟机软件,我使用的是virtualbox。
Vagrant提供一个命令行工具vagrant
,通过这个命令行工具可以直接启动一个虚拟机,当然你需要提前定义一个Vagrantfile文件,这有点类似Dockerfile之于docker了。
跟docker类比这来看vagrant就比较好理解了,vagrant也是用来提供一致性环境的,vagrant本身也提供一个镜像源,使用vagrant init hashicorp/precise64
就可以初始化一个Ubuntu 12.04的镜像。
使用场景
- 提供一个纯粹的隔离的从纯净的操作系统级别开始部署的分布式应用来说,用它来启动和做虚拟机配置还是比较方便的。
- Vagrant 会把
Vagrantfile
文件所在目录下的所有文件同步复制到虚拟机中的 /vagrant
目录下,所有命令都是使用vagrant用户执行的。
Vagrantfile
中支持多种格式的脚本,支持shell,在写脚本的时候要特别注意格式,比如用cat或者echo输入文本命令内容到文件中时候一定要注意每行开头不要有空格。
用法
你可以下载安装文件来安装vagrant,也可以使用RubyGem安装,它是用Ruby开发的。
Vagrantfile
Vagrantfile是用来定义vagrant project的,使用ruby语法,不过你不必了解ruby就可以写一个Vagrantfile。
看个例子,选自https://github.com/fenbox/Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "ubuntu/trusty64"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
# config.vm.box_check_update = false
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
# such as FTP and Heroku are also available. See the documentation at
# https://docs.vagrantup.com/v2/push/atlas.html for more information.
# config.push.define "atlas" do |push|
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
# end
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
config.vm.provision :shell, path: "bootstrap.sh"
end
Boxes
Vagrant的基础镜像,相当于docker images。可以在这些基础镜像的基础上制作自己的虚拟机镜像。
添加一个box
$ vagrant box add hashicorp/precise64
在Vagrantfile中指定box
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64"
config.vm.box_version = "1.1.0"
end
使用ssh进入vagrant
vagrant up
后就可以用vagrant ssh $name
进入虚拟机内,如果主机上就一个vagrant可以不指定名字。默认进入的用户是vagrant。
文件同步
vagrant up
后在虚拟机中会有一个/vagrant
目录,这跟你定义Vagrantfile
是同一级目录。
这个目录跟你宿主机上的目录文件是同步的。
软件安装
在Vagrantfile中定义要安装的软件和操作。
例如安装apache
在与Vagrantfile同级的目录下创建一个bootstrap.sh
文件。
#!/usr/bin/env bash
apt-get update
apt-get install -y apache2
if ! [ -L /var/www ]; then
rm -rf /var/www
ln -fs /vagrant /var/www
fi
然后在Vagrantfile中使用它。
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64"
config.vm.box_version = "1.1.0"
end
网络
端口转发
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise64"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network :forwarded_port, guest: 80, host: 4567
end
执行vagrant reload
或者vagrant up
可以生效。
分享
你自己做的vagrant是可以分享给别人的用的,只要你有一个hashicorp账号,vagrant login
后就可以执行vagrant share
分享,会生成一个URL,其它人也可以访问到你的vagrant里的服务。
中止
- vagrant suspend
- Vagrant halt
- Vagrant destroy
重启
再次执行vagrant up
即可。
分布式环境
开发分布式环境下的应用时往往需要多个虚拟机用于测试,这时候才是vagrant显威力的时候。
定义多个主机
Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: "echo Hello"
config.vm.define "web" do |web|
web.vm.box = "apache"
end
config.vm.define "db" do |db|
db.vm.box = "mysql"
end
end
这个比较复杂,详见 multi-machine
还有一些其它功能,如push、plugins、providers等。