I'm running on windows 10 , have to manually start the service from ssh (sudo service php5-fpm start) everytime I run vagrant up. No clue how to fix it sorry >.<
Another problem I ran into was with the smb share , first I had to put this at the top when running vagrant up from the git bash shell ENV["VAGRANT_DETECTED_OS"] = ENV["VAGRANT_DETECTED_OS"].to_s + " cygwin" and had a problem with the windows account username and password input not being hidden which I could fix based on gawbul's comment hashicorp/vagrant#5624 (comment) and changing the synced folder line to
config.vm.synced_folder "./", "/vagrant", type: "smb",smb_username: username, smb_password: password, mount_options: ['ip=192.168.50.1'] #host side of :private_network
If there is any better way please let me know ~
I'm running on windows 10 , have to manually start the service from ssh (sudo service php5-fpm start) everytime I run vagrant up. No clue how to fix it sorry >.<
Another problem I ran into was with the smb share , first I had to put this at the top when running vagrant up from the git bash shell ENV["VAGRANT_DETECTED_OS"] = ENV["VAGRANT_DETECTED_OS"].to_s + " cygwin" and had a problem with the windows account username and password input not being hidden which I could fix based on gawbul's comment hashicorp/vagrant#5624 (comment) and changing the synced folder line to
config.vm.synced_folder "./", "/vagrant", type: "smb",smb_username: username, smb_password: password, mount_options: ['ip=192.168.50.1'] #host side of :private_network
If there is any better way please let me know ~