我想转移到我的新笔记本电脑上的虚拟机环境,所以想要测试流浪汉。然而,我没有能够在没有一个错误的情况下越过Vagrant,我遇到了一些错误,现在我陷入困境。
Rsync总是无法执行ssh(下面的完整错误)
rsync和putty添加到sytstem路径的末尾,如
...; C:\ HashiCorp \流浪\ BIN; C:\用户\保罗\桌面\ putty.exe; C:\ cygwin64 \ BIN; C:\程序 文件\ GIT中\ CMD
Vagrant文件包含(包括windows / rsync错误修复)
Vagrant.configure(2) do |config|
config.vm.box = "centos/7"
ENV["VAGRANT_DETECTED_OS"] = ENV["VAGRANT_DETECTED_OS"].to_s + " cygwin"
end
我还尝试将C:\ HashiCorp \ Vagrant \ embedded \ gems \ gems \ vagrant-1.6.X \ plugins \ synced_folders \ rsync \ helper.rb中的第43行更改为hostpath =" / cygdrive" + Vagrant :: Util :: Platform.cygwin_path(hostpath)
而不是把它放在流浪文件中。
我仍然无法让rsync工作。我甚至不确定为什么它需要在' up'无论如何。
我从cmd运行vagrant这里是完整的输出。
C:\Users\paul\Projects\gettingStarted-centos7>vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'centos/7' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
==> default: Forwarding ports...
default: 22 => 2222 (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
default: Warning: Connection timeout. Retrying...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
default: No guest additions were detected on the base box for this VM! Guest
default: additions are required for forwarded ports, shared folders, host on
ly
default: networking, and more. If SSH fails on this machine, please install
default: the guest additions and repackage the box to continue.
default:
default: This is not an error message; everything may continue to work prope
rly,
default: in which case you may ignore this message.
==> default: Rsyncing folder: /cygdrive/c/Users/paul/Projects/gettingStarted-cen
tos7/ => /home/vagrant/sync
There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.
Host path: /cygdrive/c/Users/paul/Projects/gettingStarted-centos7/
Guest path: /home/vagrant/sync
Command: rsync --verbose --archive --delete -z --copy-links --chmod=ugo=rwX --no
-perms --no-owner --no-group --rsync-path sudo rsync -e ssh -p 2222 -o StrictHos
tKeyChecking=no -o IdentitiesOnly=true -o UserKnownHostsFile=/dev/null -i 'C:/Us
ers/paul/Projects/gettingStarted-centos7/.vagrant/machines/default/virtualbox/pr
ivate_key' --exclude .vagrant/ /cygdrive/c/Users/paul/Projects/gettingStarted-ce
ntos7/ vagrant@127.0.0.1:/home/vagrant/sync
Error: rsync: Failed to exec ssh: No such file or directory (2)
rsync error: error in IPC code (code 14) at pipe.c(85) [sender=3.1.1]
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.1]
答案 0 :(得分:5)
在阻塞点上,ssh未安装或未配置为运行(由ops确认),因此它会抛出错误(也在github issue上发表评论)
作为旁注,最好安装vagrant vbguest plugin,这样你就可以摆脱警告。 vagrant plugin install vagrant-vbguest
将负责安装vbguest,共享文件夹将更好地与guest虚拟机添加。