Hi,
my request to a zend framework 2 application lasts over a minute.
So searched the internet for a solution and found this article:
(use nfs mount instead of shared folder)
I installed this plugin successfully.
This is my config:
Win7, vagrant 1.6.3, vagrant-winnfsd version 1.0.10, VirtualBox 4.3.12, box: precise64, local network: 192.168.178.x
config.vm.synced_folder ".", "/vagrant", type: "nfs"
The nfs service is up and running and firewall disabled.
config 1:
config.vm.network "private_network", ip: "192.168.178.55"
results in:
The specified host network collides with a non-hostonly network!
This will cause your specified IP to be inaccessible. Please change
the IP or name of your host only network so that it no longer matches that of
a bridged or non-hostonly network.
config 2:
config.vm.network "private_network", ip: "10.11.12.13"
results in:
------
==> default: Mounting NFS shared folders...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
mount -o 'vers=3,udp,nolock' 10.11.12.1:'/C/Work/pflegebox' /vagrant
stdin: is not a tty
mount.nfs: mount to NFS server '10.11.12.1:/C/Work/pflegebox' failed: timed out, giving up
=======
Why isn't ip: "192.168.178.55" not working?
And why does config 2 map the configured ip address to 10.11.12.1?
What is the right config to mount a Windows nfs server within this box?
Any suggestions?
Thanks in advance.