Vagrant系列(二)----Vagrant的配置文件Vagrantfile详解

举报
lxw1844912514 发表于 2022/03/26 22:52:27 2022/03/26
【摘要】 一、简介在我们的工作目录下有一个Vagrantfile文件,里面包含有大量的配置信息,通过它可以定义虚拟机的各种配置,如网络、内存、主机名等,主要包括三个方面的配置,虚拟机的配置、SSH配置、Vagrant的一些基础配置。Vagrant是使用Ruby开发的,所以它的配置语法也是Ruby的,每个项目都需要有一个Vagrantfile...

一、简介

在我们的工作目录下有一个Vagrantfile文件,里面包含有大量的配置信息,通过它可以定义虚拟机的各种配置,如网络、内存、主机名等,主要包括三个方面的配置,虚拟机的配置、SSH配置、Vagrant的一些基础配置。Vagrant是使用Ruby开发的,所以它的配置语法也是Ruby的,每个项目都需要有一个Vagrantfile,在执行vagrant init的目录下可以找到该文件

二、Vagrantfile文件

  


    
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. # All Vagrant configuration is done below. The "2" in Vagrant.configure
  4. # configures the configuration version (we support older styles for
  5. # backwards compatibility). Please don't change it unless you know what
  6. # you're doing.
  7. Vagrant.configure("2") do |config|
  8. # The most common configuration options are documented and commented below.
  9. # For a complete reference, please see the online documentation at
  10. # https://docs.vagrantup.com.
  11. # Every Vagrant development environment requires a box. You can search for
  12. # boxes at https://atlas.hashicorp.com/search.
  13. config.vm.box = "centos7"
  14. # Disable automatic box update checking. If you disable this, then
  15. # boxes will only be checked for updates when the user runs
  16. # `vagrant box outdated`. This is not recommended.
  17. # config.vm.box_check_update = false
  18. # Create a forwarded port mapping which allows access to a specific port
  19. # within the machine from a port on the host machine. In the example below,
  20. # accessing "localhost:8080" will access port 80 on the guest machine.
  21. # config.vm.network "forwarded_port", guest: 80, host: 8080
  22. # Create a private network, which allows host-only access to the machine
  23. # using a specific IP.
  24. # config.vm.network "private_network", ip: "192.168.33.10"
  25. # Create a public network, which generally matched to bridged network.
  26. # Bridged networks make the machine appear as another physical device on
  27. # your network.
  28. # config.vm.network "public_network"
  29. # Share an additional folder to the guest VM. The first argument is
  30. # the path on the host to the actual folder. The second argument is
  31. # the path on the guest to mount the folder. And the optional third
  32. # argument is a set of non-required options.
  33. # config.vm.synced_folder "../data", "/vagrant_data"
  34. # Provider-specific configuration so you can fine-tune various
  35. # backing providers for Vagrant. These expose provider-specific options.
  36. # Example for VirtualBox:
  37. #
  38. # config.vm.provider "virtualbox" do |vb|
  39. # # Display the VirtualBox GUI when booting the machine
  40. # vb.gui = true
  41. #
  42. # # Customize the amount of memory on the VM:
  43. # vb.memory = "1024"
  44. # end
  45. #
  46. # View the documentation for the provider you are using for more
  47. # information on available options.
  48. # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
  49. # such as FTP and Heroku are also available. See the documentation at
  50. # https://docs.vagrantup.com/v2/push/atlas.html for more information.
  51. # config.push.define "atlas" do |push|
  52. # push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
  53. # end
  54. # Enable provisioning with a shell script. Additional provisioners such as
  55. # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
  56. # documentation for more information about their specific syntax and use.
  57. # config.vm.provision "shell", inline: <<-SHELL
  58. # apt-get update
  59. # apt-get install -y apache2
  60. # SHELL
  61. end

可发现其中就两行配置:


    
  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "centos7"

这两行就是我们在vagrant init中后面所指定的参数。由此可以看出,vagrant init只是帮我们生成了配置文件而已,换句话说,如果我们写好了Vagrantfile,就不需要vagrant init,只需将准备好的配置文件放入到所需目录中,然后直接执行vagrant up即可。

还有很多注释掉的配置,那些都是一些常用的配置,包括网卡设置、IP地址、绑定目录,甚至可以指定内存大小、CPU个数、是否启动界面等等。如果需要,可以根据注释文本进行配置。

三、 配置详解

下面是一些常用的配置:
config.vm.hostname:配置虚拟机主机名
config.vm.network:这是配置虚拟机网络,由于比较复杂,我们其后单独讨论
config.vm.synced_folder:除了默认的目录绑定外,还可以手动指定绑定
config.ssh.username:默认的用户是vagrant,从官方下载的box往往使用的是这个用户名。如果是自定制的box,所使用的用户名可能会有所不同,通过这个配置设定所用的用户名。

config.vm.provision:我们可以通过这个配置在虚拟机第一次启动的时候进行一些安装配置

需要注意的是,Vagrantfile文件只会在第一次执行vagrant up时调用执行,其后如果不明确使用vagrant reload进行重新加载,否则不会被强制重新加载。

3.1、box设置

config.vm.box = "centos7"

   

该名称是再使用 vagrant init 中后面跟的名字。

3.2、hostname设置

config.vm.hostname = "node1"

   

设置hostname非常重要,因为当我们有很多台虚拟服务器的时候,都是依靠hostname來做识别的。比如,我安装了centos1,centos2 两台虚拟机,再启动时,我可以通过vagrant up centos1来指定只启动哪一台。

3.3、虚拟机网络设置


    
  1. config.vm.network "private_network", ip: "192.168.10.11"
  2. //Host-only模式
  3. config.vm.network "public_network", ip: "10.1.2.61"
  4. //Bridge模式

Vagrant的网络连接方式有三种:

▲NAT : 缺省创建,用于让vm可以通过host转发访问局域网甚至互联网。

▲host-only : 只有主机可以访问vm,其他机器无法访问它。

▲bridge : 此模式下vm就像局域网中的一台独立的机器,可以被其他机器访问。

    config.vm.network :private_network, ip: "192.168.33.10"
    #配置当前vm的host-only网络的IP地址为192.168.33.10

host-only 模式的IP可以不指定,而是采用dhcp自动生成的方式,如 :


    
  1. config.vm.network "private_network", type: "dhcp”

    
  1. #config.vm.network "public_network", ip: "192.168.0.17"
  2. #创建一个bridge桥接网络,指定IP
  3. #config.vm.network "public_network", bridge: "en1: Wi-Fi (AirPort)"
  4. #创建一个bridge桥接网络,指定桥接适配器
  5. config.vm.network "public_network"
  6. #创建一个bridge桥接网络,不指定桥接适配器

3.4、同步目录设置

 config.vm.synced_folder "D:/xxx/code", "/home/www/" 

   

前面的路径(D:/xxx/code)是本机代码的地址,后面的地址就是虚拟机的目录。虚拟机的/vagrant目录默认挂载宿主机的开发目录(可以在进入虚拟机机后,使用df -h 查看),这是在虚拟机启动时自动挂载的。我们还可以设置额外的共享目录,上面这个设定,第一个参数是宿主机的目录,第二个参数是虚拟机挂载的目录。

3.5、端口转发设置

config.vm.network :forwarded_port, guest: 80, host: 8080

   

上面的配置把宿主机上的8080端口映射到客户虚拟机的80端口,例如你在虚拟机上使用nginx跑了一个Go应用,那么你在host上的浏览器中打开http://localhost:8080时,Vagrant就会把这个请求转发到虚拟机里跑在80端口的nginx服务上。不建议使用该方法,因为涉及端口占用问题,常常导致应用之间不能正常通信,建议使用Host-only和Bridge方式进行设置。

guest和host是必须的,还有几个可选属性:

●guest_ip:字符串,vm指定绑定的Ip,缺省为0.0.0.0
●host_ip:字符串,host指定绑定的Ip,缺省为0.0.0.0
●protocol:字符串,可选TCP或UDP,缺省为TCP

3.6、定义vm的configure配置节点(一个节点就是一个虚拟机)


    
  1. config.vm.define :mysql do |mysql_config|
  2. # ...
  3. end

表示在config配置中,定义一个名为mysql的vm配置,该节点下的配置信息命名为mysql_config; 如果该Vagrantfile配置文件只定义了一个vm,这个配置节点层次可忽略。

还可以在一个Vagrantfile文件里建立多个虚拟机,一般情况下,你可以用多主机功能完成以下任务:

▲ 分布式的服务,例如网站服务器和数据库服务器
▲ 分发系统
▲ 测试接口
▲ 灾难测试


    
  1. Vagrant.configure("2") do |config|
  2. config.vm.define "web" do |web|
  3. web.vm.box = "apache"
  4. end
  5. config.vm.define "db" do |db|
  6. db.vm.box = "mysql"
  7. end
  8. end

当定义了多主机之后,在使用vagrant命令的时候,就需要加上主机名,例如vagrant ssh web;也有一些命令,如果你不指定特定的主机,那么将会对所有的主机起作用,比如vagrant up;你也可以使用表达式指定特定的主机名,例如vagrant up /follower[0-9]/。
 

3.7、通用数据 设置一些基础数据,供配置信息中调用。


    
  1. app_servers = {
  2. :service1 => '192.168.33.20',
  3. :service2 => '192.168.33.21'
  4. }

这里是定义一个hashmap,以key-value方式来存储vm主机名和ip地址。

3.8、配置信息


    
  1. ENV["LC_ALL"] = "en_US.UTF-8"
  2. #指定vm的语言环境,缺省地,会继承host的locale配置
  3. Vagrant.configure("2") do |config|
  4. # ...
  5. end

参数2,表示的是当前配置文件使用的vagrant configure版本号为Vagrant 1.1+,如果取值为1,表示为Vagrant 1.0.x Vagrantfiles,旧版本暂不考虑,记住就写2即可。

do … end 为配置的开始结束符,所有配置信息都写在这两段代码之间。 config是为当前配置命名,你可以指定任意名称,如myvmconfig,在后面引用的时候,改为自己的名字即可。

3.9、vm提供者配置


    
  1. config.vm.provider :virtualbox do |vb|
  2. # ...
  3. end


▲vm provider通用配置

虚机容器提供者配置,对于不同的provider,特有的一些配置,此处配置信息是针对virtualbox定义一个提供者,命名为vb,跟前面一样,这个名字随意取,只要节点内部调用一致即可。
配置信息又分为通用配置和个性化配置,通用配置对于不同provider是通用的,常用的通用配置如下:


    
  1. vb.name = "centos7"
  2. #指定vm-name,也就是virtualbox管理控制台中的虚机名称。如果不指定该选项会生成一个随机的名字,不容易区分。
  3. vb.gui = true
  4. # vagrant up启动时,是否自动打开virtual box的窗口,缺省为false
  5. vb.memory = "1024"
  6. #指定vm内存,单位为MB
  7. vb.cpus = 2
  8. #设置CPU个数

▲vm provider个性化配置(virtualbox)

上面的provider配置是通用的配置,针对不同的虚拟机,还有一些的个性的配置,通过vb.customize配置来定制。

对virtual box的个性化配置,可以参考:VBoxManage modifyvm 命令的使用方法。详细的功能接口和使用说明,可以参考virtualbox官方文档。


    
  1. #修改vb.name的值
  2. v.customize ["modifyvm", :id, "--name", "mfsmaster2"]
  3. #如修改显存,缺省为8M,如果启动桌面,至少需要10M,如下修改为16M:
  4. vb.customize ["modifyvm", :id, "--vram", "16"]
  5. #调整虚拟机的内存
  6. vb.customize ["modifyvm", :id, "--memory", "1024"]
  7. #指定虚拟CPU个数
  8. vb.customize ["modifyvm", :id, "--cpus", "2"]
  9. #增加光驱:
  10. vb.customize ["storageattach",:id,"--storagectl", "IDE Controller","--port","0","--device","0","--type","dvddrive","--medium","/Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso"]
  11. #注:meduim参数不可以为空,如果只挂载驱动器不挂在iso,指定为“emptydrive”。如果要卸载光驱,medium传入none即可。
  12. #从这个指令可以看出,customize方法传入一个json数组,按照顺序传入参数即可。
  13. #json数组传入多个参数
  14. v.customize ["modifyvm", :id, "--name", “mfsserver3", "--memory", “2048"]

4.0、一组相同配置的vm

前面配置了一组vm的hash map,定义一组vm时,使用如下节点遍历。

    #遍历app_servers map,将key和value分别赋值给app_server_name和app_server_ip
    app_servers.each do |app_server_name, app_server_ip|
         #针对每一个app_server_name,来配置config.vm.define配置节点,命名为app_config
         config.vm.define app_server_name do |app_config|
              # 此处配置,参考config.vm.define
         end
    end

如果不想定义app_servers,下面也是一种方案:


    
  1. (1..3).each do |i|
  2. config.vm.define "app-#{i}" do |node|
  3. app_config.vm.hostname = "app-#{i}.vagrant.internal"
  4. app_config.vm.provider "virtualbox" do |vb|
  5. vb.name = app-#{i}
  6. end
  7. end
  8. end

4.1、provision任务

你可以编写一些命令,让vagrant在启动虚拟机的时候自动执行,这样你就可以省去手动配置环境的时间了。
▲ 脚本何时会被执行

● 第一次执行vagrant up命令
● 执行vagrant provision命令
● 执行vagrant reload --provision或者vagrant up --provision命令
● 你也可以在启动虚拟机的时候添加--no-provision参数以阻止脚本被执行

▲ provision任务是什么?

provision任务是预先设置的一些操作指令,格式:

    config.vm.provision 命令字 json格式参数
     
    config.vm.provion 命令字 do |s|
        s.参数名 = 参数值
    end

每一个 config.vm.provision 命令字 代码段,我们称之为一个provisioner。

根据任务操作的对象,provisioner可以分为:

● Shell
● File
● Ansible
● CFEngine
● Chef
● Docker
● Puppet

● Salt

根据vagrantfile的层次,分为:

configure级:它定义在 Vagrant.configure("2") 的下一层次,形如: config.vm.provision ...

vm级:它定义在 config.vm.define "web" do |web| 的下一层次,web.vm.provision ...

执行的顺序是先执行configure级任务,再执行vm级任务,即便configure级任务在vm定义的下面才定义。例如:


    
  1. Vagrant.configure("2") do |config|
  2. config.vm.provision "shell", inline: "echo 1"
  3. config.vm.define "web" do |web|
  4. web.vm.provision "shell", inline: "echo 2"
  5. end
  6. config.vm.provision "shell", inline: "echo 3"
  7. end

输出结果:


    
  1. ==> default: "1"
  2. ==> default: "2"
  3. ==> default: "3"

▲ 如何使用

● 单行脚本

helloword只是一个开始,对于inline模式,命令只能在写在一行中。

单行脚本使用的基本格式:

config.vm.provision "shell", inline: "echo fendo"

shell命令的参数还可以写入do ... end代码块中,如下:


    
  1. config.vm.provision "shell" do |s|
  2. s.inline = "echo hello provision."
  3. end

● 内联脚本

如果要执行脚本较多,可以在Vagrantfile中指定内联脚本,在Vagrant.configure节点外面,写入命名内联脚本:


    
  1. $script = <<SCRIPT
  2. echo I am provisioning...
  3. echo hello provision.
  4. SCRIPT

然后,inline调用如下:

config.vm.provision "shell", inline: $script

   

● 外部脚本

也可以把代码写入代码文件,并保存在一个shell里,进行调用:

config.vm.provision "shell", path: "script.sh"

script.sh的内容:

echo hello provision.

注意:

如果使用provision来安装程序,如yum install lrzsz会出现如下错误:


    
  1. E:\OS_WORK\Node2>vagrant reload --provision
  2. ==> test: Attempting graceful shutdown of VM...
  3. ==> test: Clearing any previously set forwarded ports...
  4. ==> test: Clearing any previously set network interfaces...
  5. ==> test: Preparing network interfaces based on configuration...
  6. test: Adapter 1: nat
  7. test: Adapter 2: hostonly
  8. ==> test: Forwarding ports...
  9. test: 22 (guest) => 2222 (host) (adapter 1)
  10. ==> test: Running 'pre-boot' VM customizations...
  11. ==> test: Booting VM...
  12. ==> test: Waiting for machine to boot. This may take a few minutes...
  13. test: SSH address: 127.0.0.1:2222
  14. test: SSH username: vagrant
  15. test: SSH auth method: private key
  16. ==> test: Machine booted and ready!
  17. [test] GuestAdditions 5.1.24 running --- OK.
  18. ==> test: Checking for guest additions in VM...
  19. ==> test: Setting hostname...
  20. ==> test: Configuring and enabling network interfaces...
  21. ==> test: Mounting shared folders...
  22. test: /vagrant => E:/OS_WORK/Node2
  23. ==> test: Running provisioner: shell...
  24. test: Running: inline script
  25. ==> test: Loaded plugins: fastestmirror
  26. ==> test: Loading mirror speeds from cached hostfile
  27. ==> test: * base: mirrors.shu.edu.cn
  28. ==> test: * extras: mirrors.shu.edu.cn
  29. ==> test: * updates: mirrors.shu.edu.cn
  30. ==> test: No package y available.
  31. ==> test: Resolving Dependencies
  32. ==> test: --> Running transaction check
  33. ==> test: ---> Package lrzsz.x86_64 0:0.12.20-36.el7 will be installed
  34. ==> test: --> Finished Dependency Resolution
  35. ==> test:
  36. ==> test: Dependencies Resolved
  37. ==> test:
  38. ==> test: ================================================================================
  39. ==> test: Package Arch Version Repository Size
  40. ==> test: ================================================================================
  41. ==> test: Installing:
  42. ==> test: lrzsz x86_64 0.12.20-36.el7 base 78 k
  43. ==> test:
  44. ==> test: Transaction Summary
  45. ==> test: ================================================================================
  46. ==> test: Install 1 Package
  47. ==> test:
  48. ==> test: Total download size: 78 k
  49. ==> test: Installed size: 181 k
  50. ==> test: Is this ok [y/d/N]: Is this ok [y/d/N]: Exiting on user command
  51. ==> test: Your transaction was saved, rerun it with:
  52. ==> test: yum load-transaction /tmp/yum_save_tx.2018-05-13.04-28.1BMR07.yumtx
  53. The SSH command responded with a non-zero exit status. Vagrant
  54. assumes that this means the command failed. The output for this command
  55. should be in the log above. Please read the output to determine what
  56. went wrong.

使用yum install -y就行了。

修改完Vagrantfile的配置后,记得要重启虚拟机,才能使用虚拟机更新后的配置。

vagrant reload

原文:https://blog.csdn.net/u011781521/article/details/80291765

文章来源: blog.csdn.net,作者:lxw1844912514,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/lxw1844912514/article/details/100028319

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。