2016-09-30 17 views
0

最小のセントラル7の新しい迷惑メールボックスを作成しました。新しく作成された迷惑メールボックスにSSHできません。

このガイドに従っています。 https://blog.engineyard.com/2014/building-a-vagrant-box

また、私は、私は浮浪者を実行しようとするとき、公式浮浪者に述べたような場所ですべてがしかしherehere

を案内しています。それはボックスにsshしようとするとタイムアウトになります。

これは何が原因でしょうか? VM内のネットワークアダプタがNATです。 私は、ユーザー名とパスワードとしてこのIPと放浪を使用してSSHすることができたプライベートネットワークのIPに

config.vm.network "private_network", ip: "192.168.50.4" 

を設定しようとしました。なぜ私は迷彩がsshできないのだろうか?ここ はvagrant up

Bringing machine 'default' up with 'virtualbox' provider... 
==> default: Importing base box 'my'... 
==> default: Matching MAC address for NAT networking... 
==> default: Setting the name of the VM: my_box_default_1475351710988_24744 
==> default: Clearing any previously set network interfaces... 
==> default: Preparing network interfaces based on configuration... 
    default: Adapter 1: nat 
==> default: Forwarding ports... 
    default: 22 (guest) => 2222 (host) (adapter 1) 
==> default: Booting VM... 
==> default: Waiting for machine to boot. This may take a few minutes... 
    default: SSH address: 127.0.0.1:2222 
    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 you look above, you should be able to see the error(s) that 
Vagrant had when attempting to connect to the machine. These errors 
are usually good hints as to what may be wrong. 

If you're using a custom box, make sure that networking is properly 
working and you're able to connect to the machine. It is a common 
problem that networking isn't setup properly in these boxes. 
Verify that authentication configurations are also setup properly, 
as well. 

If the box appears to be booting properly, you may want to increase 
the timeout ("config.vm.boot_timeout") value. 

SSHキーは、次のコマンド

mkdir -p /home/vagrant/.ssh 
chmod 0700 /home/vagrant/.ssh 
wget --no-check-certificate https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub -O /home/vagrant/.ssh/authorized_keys 
chmod 0600 /home/vagrant/.ssh/authorized_keys 
chown -R vagrant:vagrant /home/vagrant/.ssh 

答えて

0

を使用しようとしています。 ip addrコマンドを実行してください。ネットワークインターフェイスにIPアドレスが割り当てられていない場合は、ONBOOTyesに設定する必要があります。その後

[[email protected] ~]# vi /etc/sysconfig/network-scripts/ifcfg-enp0s3 

再起動 ONBOOT=yesにマシンをONBOOT=noを変更し、ネットワークが正常に開始され、IPアドレスがネットワークインターフェイスに割り当てられていることを確認するためにip addrを実行します。

0

これを説明することができます1.8.5のバグがありましたを使用して設定します。

1.8.6にアップグレードできますか?

+0

私は1.8.6にアップグレードしました。ボックスを再構築します。しかし、同じ問題。 – kausar

+0

あなたは迷惑メールユーザーを作成し、authorized_keysを追加した後にsshディレクトリのアクセス許可を設定する場所でスクリプトを共有できますか? – kikitux

+0

質問に質問を追加しました。ちょうど私もsshでパスワードを使用しようとしたことを知らせます。 – kausar

1

あなたはこれが誰かを助けるかもしれない

vagrant ssh 
関連する問題