流浪汉失败我的centos 4.1 i386盒子

时间:2015-12-02 05:16:34

标签: centos package vagrant

流浪汉失败

这是我的“Vagrantfile”

#-*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION="2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
    config.vm.box = "centos41build"

    config.vm.provider :virtualbox do |vb|
            vb.customize ["modifyvm", :id, "--cpus", "1", "--memory", "1024"]
            vb.gui = false
    end

    config.vm.define :centostest41 do |centostest41|
            centostest41.vm.network "private_network", ip: "192.168.10.10"
            centostest41.vm.hostname = "centosfivefour"
            ## ssh
            centostest41.vm.network :forwarded_port, guest: 22, host: 2105
    end
end

这是失败的消息

$ vagrant up
Bringing machine 'centostest41' up with 'virtualbox' provider...
==> centostest41: Clearing any previously set forwarded ports...
==> centostest41: Fixed port collision for 22 => 2222. Now on port 2203.
==> centostest41: Clearing any previously set network interfaces...
==> centostest41: Preparing network interfaces based on configuration...
    centostest41: Adapter 1: nat
    centostest41: Adapter 2: hostonly
==> centostest41: Forwarding ports...
    centostest41: 22 => 2105 (adapter 1)
    centostest41: 22 => 2203 (adapter 1)
==> centostest41: Running 'pre-boot' VM customizations...
==> centostest41: Booting VM...
==> centostest41: Waiting for machine to boot. This may take a few         minutes...
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.

If the provider you're using has a GUI that comes with it,
it is often helpful to open that and watch the machine, since the
GUI often has more helpful error messages than Vagrant can retrieve.
For example, if you're using VirtualBox, run `vagrant up` while the
VirtualBox GUI is open.

The primary issue for this error is that the provider you're using
is not properly configured. This is very rarely a Vagrant issue.

这个盒子由我自己制作的centos4.1i386 virtualbox

如何解决这个问题?

我正在搜索这个问题。但我无法解决.... gui config - >错误解决方案失败

当我给vagrant调试选项

时,会收到此错误

INFO接口:错误:客户机在等待时进入无效状态 开机有效状态为“开始,正在运行”。机器在 '权力'状态。请验证所有配置 正确再试一次。

如果您使用的提供程序具有随附的GUI, 打开它并观察机器通常很有帮助,因为 GUI通常比Vagrant可以检索更多有用的错误消息。 例如,如果您正在使用VirtualBox,请在运行时vagrant up运行 VirtualBox GUI已打开。

此错误的主要问题是您正在使用的提供程序 未正确配置。这很少是一个流浪问题。 客户机在等待时进入无效状态 开机有效状态为“开始,正在运行”。机器在 '权力'状态。请验证所有配置 正确再试一次。

如果您使用的提供程序具有随附的GUI, 打开它并观察机器通常很有帮助,因为 GUI通常比Vagrant可以检索更多有用的错误消息。 例如,如果您正在使用VirtualBox,请在运行时vagrant up运行 VirtualBox GUI已打开。

此错误的主要问题是您正在使用的提供程序 未正确配置。这很少是一个流浪问题。  INFO接口:机器:错误退出[“Vagrant :: Errors :: VMBootBadState”,“客户机在等待它时进入无效状态\ n启动。有效状态是'启动,运行'。机器在\ n'poweroff'状态。请确认所有内容都已正确配置并再次尝试。\ n \ n如果您使用的提供商有一个随附的GUI,\ nit通常有助于打开它并观看机器,因为\ n \ nNGUI通常比Vagrant可以检索更多有用的错误消息。\ n例如,如果您正在使用VirtualBox,请在\ nVirtualBox GUI打开时运行vagrant up。\ n \ n此错误的主要问题是你正在使用的提供者\ n没有正确配置。这很少是一个流浪问题。“]

0 个答案:

没有答案