Vagrant is a tool for building and distributing virtualized development environments on top of Oracle's VirtualBox.
0
votes
1answer
13 views
Adding /etc/hosts entry to host machine on vagrant up
Is it possible for one to modify files on the host machine during the vagrant up process? For example, adding an entry to the host machine's /etc/hosts file to avoid having to do this manually?
0
votes
0answers
8 views
Vagrant plugin command is not available when running `vagrant plugin install`
I have tried installing vagrant from both an apt repo and gem but here's the output I am getting when I try to run vagrant plugin install (clearly no plugin command in output):
Usage: vagrant [-v] ...
0
votes
1answer
23 views
How i can add “ServerName xxx” in httpd.conf through chef / vagrant
I'm playing with a vagrant Centos 6.4 box,
here's the relevant part of my Vagrantfile
config.vm.provision :chef_solo do |chef|
chef.json = {
"apache" => {
...
-2
votes
2answers
13 views
Error running Vagrant on Ubuntu 12.04 on EC2
I am using Ubuntu Server 12.04.2 LTS installed on Amazon EC2, architectue x86_64 with m1.medium machine type.
To install virtualbox I did
sudo apt-get install virtualbox
Now,
vagrant init ...
0
votes
0answers
18 views
How to use Berkshelf to manage Organization repo?
I'm a huge fan of Berkshelf and I've released few community cookbooks using it and its awesome.
Now, I'm starting a new chef project and I went ahead with Berkshelf for this too.
But I'm finding ...
0
votes
3answers
20 views
How can I override the Chef node name in vagrant?
I'm developing a Chef cookbook that I'm testing with Vagrant and chef-solo. The recipes look at node.name to make certain decisions. In order to test various variants of that I would like to ...
0
votes
1answer
16 views
Vagrant vm + apache permission denied for mkdir()
I am using vagrant to run my vm using ubuntu, apache, etc.
This is running on my OSX host.
Everything works fine until my php application tries to create a folder, files within that folder, etc.
I ...
1
vote
1answer
26 views
Is there an equivalent of Berkshelf, but for Puppet modules?
Currently it seems that Berkshelf is limited to only managing Chef Recipes.
Just wondering if there is anything equivalent to Berkshelf, but for Puppet Modules ?
0
votes
0answers
72 views
+300
Cannot run rake db:migrate, relation does not exist
I am trying to get a working app to work on linux 10.04 running on vagrant
I installed all relevant gems, installed postgresql 9.1.9 and when I am trying to run
rake db:migrate I am getting
rake ...
0
votes
2answers
43 views
How to create a virtual host with vagrant and chef
I've setup my first vagrant machine, with some cookbooks downloaded through knife.
I'm stuck with the setup of a virtual host.
Here's my vagrantfile:
Vagrant.configure("2") do |config|
...
0
votes
1answer
35 views
How to run a chef recipe after vagrant box provisioned
I'm using Vagrant + Berkshelf + Chef Solo to mirror behavior of my production AWS OpsWorks boxes on my development machine.
I can get the vagrant box up just fine, but now, after it has been ...
0
votes
1answer
14 views
Chef LWRP - defs/resources execution order
I have the following in a LWRP, all it does is exploding an .ear file::
action :expand do
ear_folder = new_resource.target_folder
temp_folder = "#{::File.join(ear_folder, 'tmp_folder')}"
...
1
vote
1answer
28 views
Vagrant file structure and web root
I've read the docs and a few things still confuse me, mostly related to sync folders and database data.
I want to use the following folder structure on my host machine
ROOT
|- workFolder
||- ...
0
votes
0answers
7 views
Salty Vagrant Master hostname: salt not found
I am trying to load my vagrant box with salt, asking it to install Apache.
I am using salty-vagrant in masterless mode.
The vagrant box get loaded but even though it stuck in the console with the ...
0
votes
1answer
25 views
How can I force `vagrant ssh` to do pseudo-tty allocation?
The first thing I do after vagrant ssh is usually attaching to a tmux session.
I want to automate this, so I try: vagrant ssh -c "tmux attach", but it fails and says "not a terminal".
After some ...
0
votes
2answers
70 views
+200
rbenv continually generating vagrant shim
I am using the latest vagrant with rbenv and various rubies.
I am using the latest vagrant, which no longer uses a gem. When I execute a vagrant command I see the following error:
rbenv: vagrant: ...
1
vote
0answers
53 views
How to install and configure VirtualBox/Vagrant for multiple users [closed]
Im hoping you can shed some light on this for me. I have been using virtualbox/vagrant for a few months now and really love the simplicity that it brings - being able to create a test environment is ...
0
votes
1answer
46 views
Veewee, Vagrant and Berkshelf integration
I'm trying to learn how to set up a virtual development environment using VirtualBox, Veewee, Vagrant and Chef-solo with Berkshelf.
Since I'm very new to this, I've read all I could find online, but ...
2
votes
0answers
42 views
Searching for a project skeleton for Chef + Django on Linux
Is there a pre-existing, best practices project skeleton for Chef + Django web applications on Linux (Ubuntu preferably)?
For production Django systems our preferred setup is Supervisor, Nginx, ...
0
votes
0answers
27 views
Spork, Vagrant, and Rspec
So, I'm working in a pretty complex development enviornment that is hard to replicate locally on my Mac, so we're using Vagrant boxes and Chef scripts to keep everyone on the same page. What I would ...
0
votes
1answer
55 views
How to access to postgresql on vagranted virtual machine?
I make via Vagrant virtual machine with postgresql and want to use it as my rails app database.
I use similar Vagrantfile:
Vagrant.configure("2") do |config|
config.vm.network :private_network, ...
-1
votes
0answers
53 views
Vagrant - Provisioning a ubuntu box with chef solo. Permissions issues (I think) [closed]
I am trying to get to grips with chef solo and vagrant but am falling at the first hurdle with chef.
I am running a windows 7 machine, and I have installed vagrant using the msi installer (which ...
1
vote
1answer
34 views
Unicorn fails to start on Vagrant box due to Errno::EPERM
When I run the following command to start Unicorn for a Sinatra app on my Vagrant box(ubuntu-12.04.2-server-i386)
sudo unicorn -c unicorn.rb -E development -D -l 0.0.0.0:8080
I get the following ...
0
votes
1answer
37 views
How to provision software using Vagrant without sudo
I'm trying to setup Vagrant virtual machines to support my learning through Seven Databases in Seven Weeks. I'm provisioning software using basic shell scripts which performs appropriate actions ...
-2
votes
0answers
37 views
Vagrant mysql db dump import from command line [closed]
Am new to vagrant, I want to make development environment with php, mysql, phpmyadmin. I have 450mb of sql dump how can i import using command line. My exact question is where should i place my sql ...
2
votes
0answers
71 views
Programmatically get Vagrant property in Chef solo recipe
I have a Chef (solo) recipe which generates a CSS file and puts it somewhere into web root directory (/vagrant/css on VM in my case). The problem is that the recipe needs to know an absolute path to ...
0
votes
0answers
38 views
is it possible to use Vagrant with intelliJ?
Let's say I'm working with Java and using IntelliJ to do things like build and deploy and other things like that.
I haven't used Vagrant before, but is it possible to keep using IntelliJ for the ...
0
votes
0answers
6 views
How to connect to a remote VM using vagrant? [migrated]
I have two Windows 7 machines in my local network.
One Windows 7 with Virtual Box (running Ubuntu) installed.
Is it possible to connect to the Ubuntu from another machine by using vagrant ?
0
votes
0answers
37 views
How do you get python Pandas to respect matplotlib arguments when running via IPython Notebook on a VM?
I have installed pandas and IPython Notebook, and am running on a Vagrant box. When plotting and attempting to create a stacked bar graph on a data frame, pandas ignores secondary arguments passed to ...
0
votes
0answers
19 views
Mailcatcher gem and Linux Virtual Machine
I have installed the Mailcatcher gem (http://mailcatcher.me/) on my VM managed by Vagrant. And in the Vagrantfile I have set up the forwarding port:
config.vm.forward_port 1080, 1080
I ssh to the ...
3
votes
1answer
34 views
Use custom puppet functions in Vagrant
I'm trying out custom functions in puppet for the first time to write some simple helper functions for my manifests. I put the code in {my_module}/lib/parser/functions/myhelper.rb, but if I ...
0
votes
0answers
58 views
vagrant lamp configuration precise 64 by rove.io does not work?
can anybody help me with configuring my vagrant lamp testing environment
I am using this vagrant file and this cheffile
I got most of the settings inside the vagrant file from rove.io which is a ...
0
votes
1answer
87 views
Docker container - how to configure so it gets a viable IP address when running in vagrant?
Docker (www.docker.io) looks terrific. However, after installing VirtualBox, Vagrant
... and finally Docker on a Mac, I'm finding it's not possible to access the service running in the Docker ...
0
votes
2answers
58 views
Why can't I set mark on emacs?
I am trying to run Emacs on a guest system (Ubuntu 12.04)
inside a Windows 8 command console.
This is done through vagrant + Virtual box.
It looks like this,
Guest system : Ubuntu 12.04
Host ...
0
votes
1answer
29 views
Rspec tests passing without actions being implemented
Hi there am working on a rails project, using a vagrant box(with ubuntu server fully configured with passenger, trying a hand at developing on a production like environment because this is my target ...
0
votes
1answer
37 views
Vagrant cannot install RVM on Windows
I am having an issue installing RVM on an Ubuntu VM using vagrant via Windows.
RVM says that I need to change my terminal emulator to allow login shell, and I have no idea how to do this. Here is a ...
1
vote
1answer
72 views
Vagrant shell provisioning is not working
I have been trying to use vagrant to set up an Ubuntu virtual machine on Windows for Rails development.
What I did was first create a "plain" vm and SSHed into it and then ran all the commands that I ...
-2
votes
0answers
151 views
How to upgrade a Vagrant Ubuntu box from command line? [closed]
I am new to Ubuntu.
Currently I am using Vagrant+Virtual Box.
My host system is Windows 8 and the virtual system info is as follows,
vagrant@lucid32:~$ lsb_release -a
No LSB modules are available.
...
0
votes
0answers
111 views
Vagrant localdev configuration ssh command with a non-zero exit status
I am using vagrant to work on an open source software
every time I do vagrant up, this is what I get
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means ...
0
votes
0answers
25 views
Weird behavior of Vagrant on my Ubuntu12.04
I am setting up a new virtual machine with vagrant. I am setting up for one of my rails project. I am following this tutorial. Everything works fine as told in the tutorial but once I come out of my ...
0
votes
1answer
102 views
Setting up Local Development Vagrant version backward compatibility, config.vm.customize
I am trying to participate in the open source software catarse on github
I am going through this wiki to install catarse on my local machine
...
2
votes
2answers
97 views
Vagrant reverse port forwarding?
I'm working on a web services architecture. I've got some software that I need to run on the native host machine, not in Vagrant. But I'd like to run some client services on the guest.
Vagrant's ...
1
vote
2answers
40 views
How to link a CKAN installation in Vagrant to a cloned repo in the host OS?
I'm using the chef-ckan cookbooks from Vitor Baptista to setup a CKAN installation for Vagrant.
Everything is working fine, but I can't find the way to make CKAN load the source code from my host OS ...
0
votes
1answer
59 views
Vagrant Puppet Provisioning failure due declarative structure
As the title describes I am having an issue provisioning a box successfully. I am trying to install a development box (Apache, PHP and XDebug)
Everything works fine except for the point where I have ...
0
votes
2answers
63 views
Vagrant Best Practice - Persistance
I like how through vagrant I can spin up my machine, configure it and get to coding. However when I do vagrant halt, and then do a vagrant up again, it rebuilds my machine from the base box. All the ...
0
votes
1answer
31 views
Vagrant halt scheduling
I use Vagrant with several VMs which are dependent.
For example A has a NFS server, B is a NFS client of A, etc.
When I make a vagrant up, A is launch, then B, etc.
But when I make a vagrant halt, ...
0
votes
1answer
155 views
overriding hostname in vagrant chef solo recipe
Writing my first vagrant chef solo recipe I figured something simple, like changing the hostname. In the vagrant file, I have this;
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path ...
0
votes
0answers
37 views
Vim upside down question marks on whitespace [migrated]
I've installed spf13-vim on my Vagrant machine with Ubuntu.
The issue is that when I log into Vagrant with vagrant ssh and run Vim then I get all these upside down question marks on either making a ...
0
votes
1answer
49 views
Chef Recipe On Vagrant not respecting rest_timeout or timeout option on long-running w-get download
I'm attempting to wget a large file to be used in a chef recipe - it's a database backup that is around 350mb. I'm using wget to get the file, here's my recipe:
include_recipe "apt"
include_recipe ...
1
vote
1answer
99 views
How to install a gem into rvm with puppet on a vagrant box?
I've setup a simple Vagrant box with puppet provisioner.
With puppet I've installed rvm:
exec { 'install_rvm':
command => "${as_vagrant} 'curl -L https://get.rvm.io | bash -s stable'",
...
