Answers:
我发现多个选项令人困惑,因此我决定测试所有选项以确切了解它们的作用。
我正在使用VirtualBox 4.2.16-r86992和Vagrant 1.3.3。
我创建了一个目录nametest
并运行
vagrant init precise64 http://files.vagrantup.com/precise64.box
生成默认的Vagrantfile。然后,我打开VirtualBox GUI,以便可以看到我创建的框将显示为什么名称。
默认的Vagrantfile
Vagrant.configure('2') do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
end
VirtualBox GUI名称: “ nametest_default_1386347922”
注释: 名称默认为DIRECTORY_default_TIMESTAMP格式。
定义虚拟机
Vagrant.configure('2') do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.define "foohost"
end
VirtualBox GUI名称: “ nametest_foohost_1386347922”
注释: 如果您明确定义了VM,则使用的名称将替换令牌“ default”。这是控制台上的vagrant输出名称。根据zook
的(注释器)输入进行简化
设置提供商名称
Vagrant.configure('2') do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.provider :virtualbox do |vb|
vb.name = "foohost"
end
end
VirtualBox GUI名称: “ foohost”
注释: 如果name
在提供程序配置块中设置属性,则该名称将成为VirtualBox GUI中显示的完整名称。
组合的示例:定义VM并设置提供程序名称
Vagrant.configure('2') do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.define "foohost"
config.vm.provider :virtualbox do |vb|
vb.name = "barhost"
end
end
VirtualBox GUI名称: “ barhost”
注释: 如果您同时使用这两种方法,则name
在提供程序配置块中分配的值将获胜。根据zook
的(注释器)输入进行简化
套装hostname
(奖金)
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.hostname = "buzbar"
end
注释:这将在VM内部设置主机名。这将是hostname
VM 中命令的输出,这也是在提示符()中可见的内容vagrant@<hostname>
,这里看起来像vagrant@buzbar
Vagrant.configure('2') do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.hostname = "buzbar"
config.vm.define "foohost"
config.vm.provider :virtualbox do |vb|
vb.name = "barhost"
end
end
就是这样。现在,您知道可以设置的3个不同选项以及它们具有的效果。我想这是一个偏爱的问题吗?(我是Vagrant的新手,所以我还不能说出最佳实践。)
VBoxManage list vms
在命令行上使用。
define VM
方法名称用于Vagrant stdout和日志中,而set provider name
名称则用于管理提供程序的框。因此,两者都是相关的。
do... end
块为空,则实际上并不需要它。config.vm.define "foohost"
效果很好。
Bringing machine 'default' up with 'virtualbox' provider...
执行时这种情况仍然存在vagrant up
这是我为各个VM分配名称的方式。更改YOURNAMEHERE
为您想要的名称。
Vagrantfile的内容:
Vagrant.configure("2") do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise32"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.define :YOURNAMEHERE do |t|
end
end
终端输出:
$ vagrant status
Current machine states:
YOURNAMEHERE not created (virtualbox)
config.vm.define :app_name
正常工作。
config.vm.define YOURNAMEHERE do |t| end
如果您想更改其他内容而不是“默认”,则只需将以下其他行添加到您的Vagrantfile中:
config.vm.define "tendo" do |tendo|
end
其中“ tendo”是将出现的名称而不是默认名称
是的,对于Virtualbox提供程序请执行以下操作:
Vagrant.configure("2") do |config|
# ...other options...
config.vm.provider "virtualbox" do |p|
p.name = "something-else"
end
end
vagrant destroy
重新启动将机器完全拆除 后,仍将其称为默认值。
您可以通过更改值来更改无业游民的默认计算机名称config.vm.define
。
这是使用getopts并允许您动态更改名称的简单Vagrantfile :
# -*- mode: ruby -*-
require 'getoptlong'
opts = GetoptLong.new(
[ '--vm-name', GetoptLong::OPTIONAL_ARGUMENT ],
)
vm_name = ENV['VM_NAME'] || 'default'
begin
opts.each do |opt, arg|
case opt
when '--vm-name'
vm_name = arg
end
end
rescue
end
Vagrant.configure(2) do |config|
config.vm.define vm_name
config.vm.provider "virtualbox" do |vbox, override|
override.vm.box = "ubuntu/wily64"
# ...
end
# ...
end
因此,要使用其他名称,可以运行例如:
vagrant --vm-name=my_name up --no-provision
注意:--vm-name
需要在up
命令前指定参数。
要么:
VM_NAME=my_name vagrant up --no-provision
如果有很多人在使用您的无用信息文件-您可能需要动态设置名称。下面是使用主机中的用户名作为框名和主机名的示例方法:
require 'etc'
vagrant_name = "yourProjectName-" + Etc.getlogin
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.hostname = vagrant_name
config.vm.provider "virtualbox" do |v|
v.name = vagrant_name
end
end