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…
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…
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…
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 ?
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…
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 =…
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…
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…
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…
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 .
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:…
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…
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'…
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…
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…