Questions tagged [vagrant-windows]

The windows version of the vagrant tool.

The windows version of the vagrant tool.

Tutorial.

257 questions
4
votes
2 answers

Can I use `vagrant box update` while already having the machine running by `vagrant up`?

I have some projects in Laravel, and when I have to give some maintenance to them, sometimes when I run vagrant up, it warns me up that I have a newer version of the laravel box, homestead, like the message below: A newer version of the box…
giovannipds
  • 2,860
  • 2
  • 31
  • 39
4
votes
2 answers

Accessing Node.js app on Vagrant via SSL/TLS connection

So I inherited a Nodes.js app which I am running on a Vagrant box. I have the app binding to "0.0.0.0", and it has its own server.key and certs in the securekey folder. var https = require('https'); var fs = require('fs'); var ssl_options = { …
evkwan
  • 693
  • 3
  • 9
  • 17
4
votes
2 answers

Vagrant runs wrong provisioning file when booting multiple machines

I have the following vagrantfile, which specifies 2 machines - the frontend and the backend box. Vagrant.configure(2) do |config| config.vm.box = "frontend" config.vm.network "private_network", ip: "192.168.0.5" config.vm.provider…
BlackSpy
  • 5,563
  • 5
  • 29
  • 38
4
votes
2 answers

Can't Get Clean Vagrant Box "Remove" or "Destroy"

I'm using Vagrant 1.8.1 on Windows 10. When trying to remove or destroy a box, I got these contradictory results: baria@DESKTOP-057K4L5 /c/repos/hub/vtc/linphone-windows-dependencies $ vagrant box list hashicorp/precise64 (virtualbox,…
Brent Arias
  • 29,277
  • 40
  • 133
  • 234
4
votes
0 answers

an established connection was aborted by the software in your host machine vagrant

I am going to make my local vagrant machine online, i have done vagrant login successfully, but when i am trying to share my vagrant with command "vagrant share" its giving me error. error is attached as screenshot. screenshot 1 screenshot…
Asif
  • 99
  • 1
  • 10
4
votes
3 answers

Vagrant - how to detect windows host RAM and CPU

I'd like my vagrantfile to automatically set CPU and RAM based on the host specs. I found this snippet: config.vm.provider "virtualbox" do |v| host = RbConfig::CONFIG['host_os'] # Give VM 1/4 system memory & access to all cpu cores on…
Mentor
  • 965
  • 9
  • 21
4
votes
4 answers

Vagrant ssh connect to host 127.0.0.1:2222 port 22: Bad file number

Whenever I try to connect to my local Vagrant, I get this error when I run ssh vagrant@127.0.0.1:2222 from the Windows git bash: ssh: connect to host 127.0.0.1:2222 port 22: Bad file number It was working previously, so I'm not sure what could have…
eComEvo
  • 11,669
  • 26
  • 89
  • 145
3
votes
2 answers

Vagrant up fails with Warning: Remote connection disconnect. Retrying

Upgraded to vagrant version 2.1.1 and latest centos/7 (virtualbox, 1803.01) and $vagrant up now fails to build just after the new key is loaded. The Vagrant file being used has run fine on previous versions of vagrant (2.0.3). Interestingly I am…
Melamber
  • 49
  • 1
  • 6
3
votes
1 answer

Adding Box to Vagrant

I've created a new box for use with the Hyper-V provider. When I try to add the box, it dies with the following: PS C:\> vagrant box add sbx-misc-app01 .\img-misc-w2k16.box ==> box: Box file was not detected as metadata. Adding it directly... ==>…
Adam
  • 3,891
  • 3
  • 19
  • 42
3
votes
2 answers

Virtualbox fails to connect due to Windows Firewall, Vagrant cannot start

I have an Ubuntu 14.04 Vagrant box that I am trying to use on a Windows 10 host. The box is not the issue as it works fine on other systems. My Virtualbox version is currently 5.1.28, I tried the latest version which is when the problem started so I…
NeyLive
  • 424
  • 5
  • 23
3
votes
3 answers

Pip stuck on "Running command python setup.py egg_info" - no errors.

I run Vagrant on Windows 10 with VirtualBox,Xenial64 ubuntu to load TaigaIO via manual setup. At pip install -vvv -r requirements-devel.txt part , pip hangs forever when it tries to install django-sampledatahelper. When i try to install just this…
Mike
  • 465
  • 5
  • 14
3
votes
0 answers

Image resizing not working in development with carrierwave-aws

Image files are meant to be resized as they are uploaded. The code ' process resize_to_fill: [800, 350]' in the uploader file works in production, but not in my development environment. (I use Vagrant) My file config/initializers/carrierwave.rb was…
3
votes
0 answers

GuestAdditions versions on your host (5.1.16) and guest (4.3.36) do not match

I am trying to add more than 1 VM instance through Vagrant 1.9.2 and Oracle Virtualbox. Getting "mounting" problem followed by the error - GuestAdditions versions on your host (5.1.16) and guest (4.3.36) do not match.
Sudip
  • 41
  • 2
3
votes
3 answers

How to run gui application on windows vm?

I have installed vagrant and virtual box on my Mac. I have created a Windows10 VM and it's configured with winrm. I am able to run commands on Windows VM through vagrant. However I am not able to see any GUI on the VM. For example, if I open…
3
votes
2 answers

Vagrant on Windows can't vagrant-up and ssh connect

So I've watch many videos on Vagrant and it seems so simple: with VirtualBox and Vargant installed, simply specify the VM box's name in the Vagrantfile, run $ vagrant up and you should be able to $ vagrant ssh to it directly. However, a week-end…
TheWalkingPanda
  • 183
  • 3
  • 9