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…
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 = {
…
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…
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,…
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…
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…
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…
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…
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...
==>…
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…
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…
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…
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.
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…
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…