2016-09-06 4 views
0

Я пытался пробудить базу VM bento/centos-67.Невозможно выполнить соединение с брандмауэром SSH с ключом при инициализации базы (разрешено разрешение разрешенных_keys)

$ vagrant version 
Installed Version: 1.8.5 
Latest Version: 1.8.5 

You're running an up-to-date version of Vagrant! 

$ vagrant init bento/centos-6.7; vagrant up --provider virtualbox; vagrant up 
A `Vagrantfile` has been placed in this directory. You are now 
ready to `vagrant up` your first virtual environment! Please read 
the comments in the Vagrantfile as well as documentation on 
`vagrantup.com` for more information on using Vagrant. 
Bringing machine 'default' up with 'virtualbox' provider... 
==> default: Importing base box 'bento/centos-6.7'... 
==> default: Matching MAC address for NAT networking... 
==> default: Checking if box 'bento/centos-6.7' is up to date... 
==> default: Setting the name of the VM: bento_default_1473166306806_14580 
==> 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: Forwarding ports... 
    default: 22 (guest) => 2200 (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:2200 
    default: SSH username: vagrant 
    default: SSH auth method: private key 
    default: 
    default: Vagrant insecure key detected. Vagrant will automatically replace 
    default: this with a newly generated keypair for better security. 
    default: 
    default: Inserting generated public key within guest... 
    default: Removing insecure key from the guest if it's present... 
    default: Key inserted! Disconnecting and reconnecting using new SSH key... 
    default: Warning: Authentication failure. Retrying... 
    default: Warning: Authentication failure. Retrying... 
    default: Warning: Authentication failure. Retrying... 

Но в то же время я могу использовать vagrant ssh с паролем vagrant.

Итак, что случилось ..

Связанные вопросы:? #1

(Также сообщается вопрос к chef)

Fix

Проблема заключается в том: ~/.ssh/authorized_keys файл с открытый ключ 644 разрешений, но должно быть 600

$ ssh [email protected] -p 2200 # use password "vagrant" 
[[email protected] ~]$ chmod 600 ~/.ssh/authorized_keys 

Теперь vagrant ssh можно использовать без запроса.

Вопрос в том, почему он не работает из коробки? Что пошло не так? Я научил его правильно определять файл authorized_keys? oO

Возможно, это связано с the vagrant bug.

ответ

1

Это, безусловно, ошибка, с которой вы связываетесь, а не поле Bento. Я являюсь держателем коробки Bento, и мы вернулись к Vagrant 1.8.4 в наших трубопроводах.

+0

Да, он принадлежит Vagrant v1.8.5. Благодарю. – Kirby