私は非常にシンプルVagrantfile作成:Ubuntu 16.04に迷惑な人にSSHできませんか?
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "boxcutter/ubuntu1604"
config.vm.hostname = "r1"
config.vm.network "forwarded_port", guest: 3000, host: 3000
config.vm.network "private_network", ip: "192.168.50.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
end
のUbuntu 16.04サーバーまでの一般的な目的を。 SSH接続のトラブル以外はすべてが良いです。
マイログ:
vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'boxcutter/ubuntu1604' is up to date...
==> default: Fixed port collision for 22 => 2222. Now on port 2200.
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
default: Adapter 2: hostonly
==> default: Forwarding ports...
default: 3000 (guest) => 3000 (host) (adapter 1)
default: 22 (guest) => 2200 (host) (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2200
default: SSH username: vagrant
default: SSH auth method: private key
Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period.
...
If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.
私はボックス名"のUbuntu/trusty64"でconfig.vm.box = "ボックスカッター/ ubuntu1604" を交換し、それがうまく働いています、 16.04で修正する方法は?
古いバージョンとUbuntuで多くの問題がある最新の迷惑メール/バーチャルボックスを持っていることを確認してください。16.04 –
https://atlas.hashicorp.com/boxes/searchにある 'ubuntu/trusty64'のようですデスクトップ版のOSであり、サーバー版ではありません。インストール中に「BIOSをアップグレードするか、force_addr = 0xaddr」*エラーが発生しましたが、Vagrantはエラーを表示しません。私はインポートして使用します - *迷惑メールボックスはhttps://atlas.hashicorp.com/gbarbieru/boxes/xenial*を追加し、うまくいきます。誰かを助けることを願っています。 – sharp
このコードをvagrantfileに追加してこのケースを解決します:vb.customize ["modifyvm"、:id、 "--cableconnected1"、 "on"] – sharp