web-dev-qa-db-fra.com

vagrant up jette La commande suivante a répondu avec un statut de sortie non nul

Je reçois l'erreur suivante lors de l'exécution de vagabond:

The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

mount -o vers=3,udp 192.168.33.1:/Users/freid/www/projects /vagrant

Stdout from the command:



Stderr from the command:

mount.nfs: requested NFS version or transport protocol is not supported

Mon fichier Vagrant ressemble à:

Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v|
    v.name = "projects"
    v.customize [
        "modifyvm", :id,
        "--name", "projects",
        "--memory", 2048,
        "--natdnshostresolver1", "on",
        "--cpus", 1,
    ]
end

config.vm.box = "ubuntu/trusty64"

config.vm.network :private_network, ip: "192.168.33.71"
config.ssh.forward_agent = true

config.vm.synced_folder "./", "/vagrant", type: "nfs"   
end

J'ai exécuté la mise à jour de vagrant box ainsi que la mise à jour de ma version de vagrant à la dernière v1.9.5

J'essaie de configurer cela en tant qu'environnement de développement local sur ma machine Mac, mais qu'est-ce que je fais mal, des suggestions?

Merci

1
Freid001

Après avoir ajouté 127.0.0.1 localhost au fichier/etc/hosts. La question semble avoir disparu.

0
Freid001