Questions tagged [vagrant-windows]

The windows version of the vagrant tool.

The windows version of the vagrant tool.

Tutorial.

257 questions
0
votes
2 answers

Vagrant up on Windows 7: error setting certificate verify locations

I've just met Vagrant, trying to pass Getting Started instructions https://www.vagrantup.com/intro/getting-started/index.html Before diving into your first project, please install the latest version of Vagrant. And because we will be using…
and1er
  • 749
  • 8
  • 18
0
votes
0 answers

initialize : malformed version number string data (ArgumentError)

I added a new folder ./data inside boxes\ubuntu-xenial64\ and edited the Vagrantfile by uncommenting this line: config.vm.synced_folder "./data", "/vagrant_data" Getting error as below: PS…
0
votes
1 answer

Failed to build gem native extension nio4r in Vagrant SSH windows 7 32-bit

I'm setting up Rails environment using Vagrant with the box ubuntu/trusty32 in Windows 7 32-bit host. I'm stuck with bundle install --path=./vendor/bundle. I got the following error: Gem::Ext::BuildError: ERROR: Failed to build gem native…
Sithu
  • 4,752
  • 9
  • 64
  • 110
0
votes
0 answers

unable to vagrant ssh to windows box

I downloaded windows 2012 box using vagrant. While doing a vagrant up, though the box was successfully installed on the virtual box, It gave me the following error Is there any config change, that needs to be done for windows box ?
Subodh Shetty
  • 204
  • 2
  • 12
0
votes
1 answer

Vagrant box downloaded without extension

I tried adding a vagrant box for Windows Server 2012 using the following command - vagrant box add promet/windows2012 This was taking quite a lot of time ( The size is 10.3 GB). This can be seen below- So to cut short the waiting period , I picked…
Subodh Shetty
  • 204
  • 2
  • 12
0
votes
1 answer

Vagrant is searching form rsync on windows

This is the Vagrantfile: # -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.define :sylius do |sylius_config| sylius_config.vm.box =…
0
votes
1 answer

localhost socket not connected error with vm

I downloaded vagrant and created a new ubuntu VM. Then I installed apache2 in ubuntu. When I accessed localhost:8080 from my web browser in windows it gave me this error "The webpage at http://localhost:8080/ might be temporarily down or it may…
Sriram R
  • 2,109
  • 3
  • 23
  • 40
0
votes
1 answer

Vagrant: Windows host and Windows guest - how to restrict smb share?

I have a Windows 7 host and a Windows Server 2016 guest. I have the following line in my Vagrantfile: config.vm.synced_folder ".", "c:/vagrant", type: "smb", smb_username: "xxx", smb_password: "xxx" Doing a vagrant up makes the folder containing…
langlauf.io
  • 3,009
  • 2
  • 28
  • 45
0
votes
0 answers

Sinatra doesn't want to say hello

What could possibly be wrong? I run this file: require 'sinatra' get '/' do "Just Do It" end Server starts up: == Sinatra (v2.0.0) has taken the stage on 3000 for development with backup from Thin Thin web server (v1.7.1 codename Muffin…
stuartambient
  • 127
  • 1
  • 1
  • 10
0
votes
0 answers

Unable to reach on my vagrant ubuntu machine webserver into windows host browser

I have setup vagrant on Windows 7. And setup a ubuntu 14.04 server on it. I have installed apache web server on it . But now i am unable to open that apache starting page in my browser .
0
votes
1 answer

Can't provision authorized_keys file into VM using Vagrant

I am trying to use my own pair of RSA SSH-2 keys with Vagrant 1.9.5 on VirtualBox 5.1.22 with Windows 7 SP1 host and a CentOS 7.3 guest. When I execute vagrant up I get : Waiting for machine to boot. This may take a few minutes... SSH address:…
Serg M Ten
  • 5,568
  • 4
  • 25
  • 48
0
votes
1 answer

Vagrant host to guest connection slow

I've recently checked out a project that hasn't been touched in 8 months. On vagrant up-ing I'm finding that any connections made to the guest are ridiculously slow, for example 12 database CRUD operations are taking five minutes to execute against…
Crazy Dino
  • 808
  • 1
  • 8
  • 20
0
votes
0 answers

Can't add box with vagrant on windows 10

I'm on windows 10, last version of vagrant 1.9.3, and when I try to add a box I keep getting the same message: ==> box: Loading metadata for box 'laravel/homestead' box: URL: https://atlas.hashicorp.com/laravel/homestead The box 'laravel/homestead'…
0
votes
1 answer

Not able to connect to HBase ( Zookeeper ) running on Vagrant

I have simple vagrant machine which has a stand alone instance on HBase. When I start the hbase, I'm able to access to access the hbase information URL http://192.168.99.101:16010/master-status. But when I try to connect through java, I'm not able…
Dave
  • 962
  • 5
  • 19
  • 44
0
votes
2 answers

How to change owner or group when syncing with rsync in vagrant box?

Currently I'm struggling with permission issues in my Drupal installation on a Drupal-VM (Vagrant + Virtual Box on Windows). I'm syncing with rsync which leads to owner and group vagrant of synced files and folders. Because apache is running with…
Philipp Michael
  • 954
  • 1
  • 11
  • 22