vagrantのSyncedFolderにrsyncでのエラー

vagrantのSyncedFolderにrsyncでエラーが発生しました

There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.

Host path: /home/user/ws/vagrant/precise32/
Guest path: /vagrant
Command: rsync –verbose –archive –delete -z –copy-links –no-owner –no-group –rsync-path sudo rsync -e ssh -p 2222 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ‘/home/user/.vagrant.d/insecure_private_key’ –> exclude .vagrant/ –exclude .git/ /home/user/ws/vagrant/precise32/ vagrant@127.0.0.1:/vagrant
Error: Warning: Permanently added ‘[127.0.0.1]:2222’ (ECDSA) to the list of known hosts.
Received disconnect from 127.0.0.1: 2: Too many authentication failures for vagrant
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.0]

解決策はこれでした

$ vim ~/.ssh/config
Host 127.0.0.1
IdentitiesOnly yes

を追記
これでうまくいきました

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください