Questions tagged [vagrant]

Use this tag for questions about Vagrant, an open-source software product for building and maintaining portable virtual development environments.

From Wikipedia:

Vagrant is an open-source software product for building and maintaining portable virtual development environments. The core idea behind its creation lies in the fact that the environment maintenance becomes increasingly difficult in a large project with multiple technical stacks. Vagrant manages all the necessary configurations for the developers in order to avoid the unnecessary maintenance and setup time, and increases development productivity. Vagrant is written in the Ruby language, but its ecosystem supports development in almost all major languages.

44 questions
10
votes
3 answers

Unable to ssh in a multi-machine vagrant environment

I created a three node multi-machine vagrant environment and am having issues ssh'ing from one vagrant vm to another. Here is the Vagrantfile: Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.define "master" do…
HBach
  • 101
  • 1
  • 4
4
votes
0 answers

How do I get synced_folder to execute after a shell provisoner

So what I think I'm trying to do is pretty simple, I need to execute the following in-order: Run a script that will install via script VBoxLinuxAdditions.run [this is working when I run it by itself] Run my synced_folder provision after the…
user1172468
  • 143
  • 4
1
vote
0 answers

Security of vagrant boxes - who maintains them?

Is there anywhere to see who a box is maintained by? For example the debian related boxes at https://app.vagrantup.com/debian - are these official images/boxes maintained by "The Debian Project"? What functionality is in place to ensure boxes do not…
Chris Stryczynski
  • 493
  • 1
  • 3
  • 13
0
votes
1 answer

Is Vagrant an operating system by itself?

If Vagrant (and similar software) uses to orchestrate, install and continuously upgrade one or more OSs on a single machine, isn't it some kind of an operating system by itself? Or it actually virtualizes an OS on top of an existing OS and doesn't…
user5176
0
votes
1 answer

Vagrant box take long time to access shared /vagrant folder

I have a vagrant box running on windows 10 hyper-v config.vm.box = "kmm/ubuntu-xenial64" #A standard Ubuntu 16.04 LTS (x64). config.vm.provider "hyperv" Just after provisioning it, it seems to be running o.k. but then if I exit and ssh back to it…
epeleg
  • 111
  • 2