我正在努力解决旧的错误/错误,我列出了很多可能的解决方案,但对我没有任何结果。 我有一个Virtual Box和Vagrantfile:
vagrant up
在创建符号链接文件夹之前一切正常。因此,当我键入==> default: Checking if box 'debian/jessie64' is up to date...
==> 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: 22 (guest) => 2222 (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:2222
default: SSH username: vagrant
default: SSH auth method: private key
==> default: Machine booted and ready!
[default] GuestAdditions 5.1.31 running --- OK.
==> default: Checking for guest additions in VM...
==> default: Configuring and enabling network interfaces...
==> default: Rsyncing folder: /Users/user/code/sandbox/mysite.local/ => /vagrant
There was an error when attempting to rsync a synced folder.
Please inspect the error message below for more info.
Host path: /Users/user/code/sandbox/mysite.local/
Guest path: /vagrant
Command: "rsync" "--verbose" "--archive" "--delete" "-z" "--copy-links" "--no-owner" "--no-group" "--rsync-path" "sudo rsync" "-e" "ssh -p 2222 -o LogLevel=FATAL -o ControlMaster=auto -o ControlPath=/var/folders/kh/sp8l6c0d1s3_jqkv6cv2jzlw0000gn/T/ssh.832 -o ControlPersist=10m -o IdentitiesOnly=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i '/Users/user/code/sandbox/mysite.local/.vagrant/machines/default/virtualbox/private_key'" "--exclude" ".vagrant/" "/Users/user/code/sandbox/mysite.local/" "vagrant@127.0.0.1:/vagrant"
Error: symlink has no referent:
"/Users/user/code/sandbox/mysite.local/web"
rsync error: some files could not be transferred (code 23) at
/BuildRoot/Library/Caches/com.apple.xbs/Sources/rsync/rsync-
52/rsync/main.c(996) [sender=2.6.9]
时会抛出错误:
milliSeconds
我需要做些什么来解决这个问题?
答案 0 :(得分:1)
因此,删除断开的链接不是该问题的最佳解决方案。默认情况下 - “home”同步目录是/ vagrant。我已经制作了另一个同步文件夹。这是他们之间的冲突。
config.vm.synced_folder ".", "/vagrant", disabled: true
将这些行添加到我的Vagrantfile后,错误就消失了。
答案 1 :(得分:0)
您的符号链接/Users/user/code/sandbox/mysite.local/web已损坏,因此rsync无法将其复制到您的VM。修复你的符号链接或在你运行流浪汉之前把它移开:
cd /Users/user/code/sandbox/mysite.local
mv web ../