Como configurar o vagrant-sshfs para funcionar corretamente no Win10 com o Hyper-V?

0

Estou tentando configurar o Vagrant e o Hyper-V e está quase pronto, mas o compartilhamento de pastas está falhando porque me recuso a usar o SMB e, em vez disso, quero usar vagrant-sshfs . Sabe-se que no sistema Windows é necessário ter um sftp-server que normalmente é fornecido pelo OpenSSH e por essa razão eu segui este instruções para instalar o OpenSSH no Windows 10.

É assim que meu Vagrantfile se parece:

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = "centos/7"
  config.vm.network :forwarded_port, host: 8080, guest: 80
  config.vm.network "private_network", ip: "192.168.50.4"
  config.vm.synced_folder "../../applications", "/var/www", type: "sshfs", , sshfs_opts_append: "-o cache=no"

  config.vm.provider :hyperv do |vb|
    vb.memory = "2048"
    vb.vmname = "centos7"
  end
end

Quando eu executei o comando vagrant up , recebi o seguinte:

λ vagrant up
Bringing machine 'default' up with 'hyperv' provider...
==> default: Verifying Hyper-V is enabled...
==> default: Verifying Hyper-V is accessible...
    default: Configuring the VM...
==> default: Starting the machine...
==> default: Waiting for the machine to report its IP address...
    default: Timeout: 120 seconds
    default: IP: 192.168.0.103
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 192.168.0.103:22
    default: SSH username: vagrant
    default: SSH auth method: private key
==> default: Machine booted and ready!
==> default: Mounting SSHFS shared folder...
==> default: Mounting folder via SSHFS: E:/Development/applications => /var/www/html
==> default: Checking Mount..
==> default: Checking Mount..
==> default: Checking Mount..
==> default: Checking Mount..
==> default: Checking Mount..
==> default: Checking Mount..
==> default: Checking Mount..
Mounting SSHFS shared folder via slave SSHFS mount failed. Please
look at the below STDERR output from the processes that were run.

SSH command:

Warning: Permanently added '192.168.0.103' (ECDSA) to the list of known hosts.
fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the 'nonempty' mount option


SFTP command:

Algum pode me ajudar a configurar isso corretamente? Por que eu estou sentindo falta aqui?

    
por ReynierPM 01.07.2018 / 03:03

0 respostas