Re: [vagrant-up] Gather details from vagrant about port forwarding.

2014-01-30 Thread Alvaro Miranda Aguilera
dumb question, but vagrant ssh won't do the trick for you? On Fri, Jan 31, 2014 at 1:15 AM, Marcin Prączko marcin.prac...@gmail.comwrote: Hi, I am still using vagrant 1.2.7 - I know that there is much more higher version. But my question is general, even for .1.5.X. Is there any way to

Re: [vagrant-up] vagrant with send_hostname_in_dhcp_request for redhat hosts

2014-01-31 Thread Alvaro Miranda Aguilera
-web.denali-systems.com On Thursday, January 30, 2014 4:14:46 PM UTC-8, Alvaro Miranda Aguilera wrote: Hello, Reading his patch when this was introduced https://github.com/mitchellh/vagrant/pull/2267/files what you see is what was implemented it will set DHCP_HOSTNAME in the network file

[vagrant-up] Please share cool tricks on Vagrant file / ruby you use

2014-02-04 Thread Alvaro Miranda Aguilera
Hello, I have just moved from using 1 box, to having 2 for an oracle rac with vagrant. 88 minutes for 12c oracle rac installation. Now, Will move into 3 or 4 servers, say 2 db, 2 apps, plus a DR of everything.., so instead of doing a LONG Vagrantfile, I am thinking check some Vagrantfiles over

Re: [vagrant-up] Change default disk controller in Vagrant

2014-02-05 Thread Alvaro Miranda Aguilera
Hello, I tried to create a VM using IDE, and even when I select IDE HD, with the 3 chipsets available on VirtualBox 4.3.6 it show up as /dev/sda Can you try with an older version of VirtualBox? On Wed, Feb 5, 2014 at 11:17 PM, mkebay...@gmail.com wrote:

Re: [vagrant-up] Change default disk controller in Vagrant

2014-02-05 Thread Alvaro Miranda Aguilera
May I ask, what old version/distro of linux are you using? On Thu, Feb 6, 2014 at 11:34 AM, Alvaro Miranda Aguilera kiki...@gmail.comwrote: Hello, I tried to create a VM using IDE, and even when I select IDE HD, with the 3 chipsets available on VirtualBox 4.3.6 it show up as /dev/sda Can

Re: [vagrant-up] Discussion about private_network issue (continued from gh-2881)

2014-02-06 Thread Alvaro Miranda Aguilera
Ok, so the issue of 3 networks can be resolved by: config.vm.provider :virtualbox do |vb, override| override.vm.box = 'Tourbuzz_Basebox_centos_65' override.vm.box_url = 'https://s3.amazonaws.com/util.cloud.tourbuzz.net/base_boxes/opscode_centos-6.5_chef-11.8.2.box'

Re: [vagrant-up] Discussion about private_network issue (continued from gh-2881)

2014-02-06 Thread Alvaro Miranda Aguilera
For the ssh port issue, I have to change your Vagrantfile a bit. As you are concerned of the security reasons, I did add a rule in iptables that will allow only connections from interface eth0, that is nat, so nothing bad will happen I add port 22 and 1855 to sshd, but 22 is protected by the

Re: [vagrant-up] How resume an vagrant up?

2014-02-07 Thread Alvaro Miranda Aguilera
is all or nothing, so you need to make sure your scripts are idempotent. http://en.wikipedia.org/wiki/Idempotence Example, I have Vagrant files that update OS, and format en mount hard drives re-running the update is not harmful, so nothing to do but, I check if the disk is used before creatn

Re: [vagrant-up] Discussion about private_network issue (continued from gh-2881)

2014-02-07 Thread Alvaro Miranda Aguilera
have noticied a little error: should be config.vm.provision :shell, :inline = grep '^Port 1855$' /etc/ssh/sshd_config || echo 'Port 1855' /etc/ssh/sshd_config service sshd restart config.vm.provision :shell, :inline = grep '^Port 22$' /etc/ssh/sshd_config || echo 'Port 22'

Re: [vagrant-up] Discussion about private_network issue (continued from gh-2881)

2014-02-09 Thread Alvaro Miranda Aguilera
... Thoughts? On Thursday, February 6, 2014 7:12:02 PM UTC-5, Alvaro Miranda Aguilera wrote: For the ssh port issue, I have to change your Vagrantfile a bit. As you are concerned of the security reasons, I did add a rule in iptables that will allow only connections from interface eth0, that is nat

Re: [vagrant-up] Common Vagrantfile to provision code as a VM or Docker container (building via Dockerfile)

2014-02-09 Thread Alvaro Miranda Aguilera
Have a look at config.ssh.port config.ssh.host If you set those, and the vagrant user/ssh key, then I assume you can use vagrant to connect and execute commands in that machine you want to use with docker. Will be this what you are looking? Desktop with Vagrant === Server with Docker. Alvaro.

Re: [vagrant-up] Vagrant crashes when public_network is enabled

2014-02-10 Thread Alvaro Miranda Aguilera
Where / how is the banner defined? can you remove the banner and test again? On Mon, Feb 10, 2014 at 5:36 PM, kapitanluffy pirata kapitanlu...@gmail.com wrote: When I uncomment the *config.vm.network :public_network* and run *`vagrant up`* it throws me an error although the vm successfully

Re: [vagrant-up] Re: Vagrant forever waiting for VMWare Fusion 6 machine to boot

2014-02-11 Thread Alvaro Miranda Aguilera
what the guest os? can you share a gist with vagrantfile ifconfig -a cat /etc/sysconfig/network-scripts/ifcfg-eth* Alvaro. On Wed, Feb 12, 2014 at 1:33 AM, Hongli Lai hongli...@gmail.com wrote: I've tried deleting all leases files in /var/db/vmware. I then stopped VMWare Fusion, and re-ran

Re: [vagrant-up] Vagrant is waiting for machine to boot... and never come back

2014-02-12 Thread Alvaro Miranda Aguilera
can you share your vagrantfile and tell what's the change you are doing? On Thu, Feb 13, 2014 at 6:06 AM, Noel Broda brodan...@gmail.com wrote: Hi guys. Look at the image. In a first step, i run vagrant up, and then vagrant ssh and into the VM I executed some commands. Then, execute exit,

Re: [vagrant-up] Centralized vagrant config file?

2014-02-12 Thread Alvaro Miranda Aguilera
Hi There, You can use this, for all the code that is the same: This came from mitchellh: you can work around this at the moment by creating a home-directory Vagrantfile in ~/.vagrant.d/Vagrantfile and doing something like this: ENV[DEFAULT_BRIDGE] ||= foo Then in your main project

Re: [vagrant-up] Re: vagrant up hangs for a newly created Fedora 19 box. Can't login?

2014-02-13 Thread Alvaro Miranda Aguilera
for fedora, before export/save the box 1. rm /etc/udev/rules.d/70-persistent-net.rules 2. chkconfig NetworkManager off 3. edit /etc/sysconfig/network-scripts/ifcfg-eth* you can leave only ifcfg-eth0 and delete all the others, as Vagrant will recreate them remove UUID remove HWADDR ensure

Re: [vagrant-up] Vagrant Provisioning via Shell Does not Change System Path

2014-02-16 Thread Alvaro Miranda Aguilera
Hello, What you need is something like this. config.vm.provision :shell, :inline = [ -f ~/.profile ] || touch ~/.profile config.vm.provision :shell, :inline = [ -f ~/.bash_profile ] || touch ~/.bash_profile config.vm.provision :shell, :inline = grep 'PATH=/usr/local/x86_64/bin' ~/.profile ||

Re: [vagrant-up] Adding a setting in the Vagrantfile to disable a box

2014-02-17 Thread Alvaro Miranda Aguilera
My suggestion will be, in the vagrant file, around the secondary machine write this: if ENV[secondary] BLOCK FOR SECONDARY BOX end so you can then do secondary=true vagrant up secondary On Mon, Feb 17, 2014 at 9:37 PM, ra...@future500.nl wrote: [ I apologise for this issue I

Re: [vagrant-up] Re: Vagrant Provisioning via Shell Does not Change System Path

2014-02-17 Thread Alvaro Miranda Aguilera
|| echo 'export PATH=/usr/local/x86_64/bin:$PATH' | tee -a ~/.bash_profile config.vm.provision :shell, :inline = . ~/.profile config.vm.provision :shell, :inline = . ~/.bash_profile end Thanks a lot! Matej On Tuesday, February 18, 2014 12:16:35 AM UTC, Alvaro Miranda Aguilera wrote

Re: [vagrant-up] Adding a setting in the Vagrantfile to disable a box

2014-02-19 Thread Alvaro Miranda Aguilera
for a proper autostart flag if this is more than just an edge case I dreamt up. Ramon On 18 Feb 2014, at 01:23, Alvaro Miranda Aguilera kiki...@gmail.com wrote: My suggestion will be, in the vagrant file, around the secondary machine write this: if ENV[secondary] BLOCK

Re: [vagrant-up] Vagrant file organization and best practices

2014-02-21 Thread Alvaro Miranda Aguilera
how do you log into the server/machine with the boxes? how is different each user? or all the users use the same account? On Fri, Feb 21, 2014 at 7:21 PM, ju2whe...@gmail.com wrote: Hi all, ive just recently been reading through the vagrant docs and have a few quesitons about organization

Re: [vagrant-up] Trying to make two vagrant VMs on my workstattion to talk

2014-02-23 Thread Alvaro Miranda Aguilera
Hello there the easiest will be use /etc/hosts in the virtual machines in that way you will be able to use names in each of them. regarding dns, is not that easy thing to do, if that was easy, like fire up a dns record and propagate over the internet, what will stop you to put google.com on your

Re: [vagrant-up] Any way of diagnosing a slow 'vagrant up'?

2014-02-24 Thread Alvaro Miranda Aguilera
once the machine have been created, you can take over virtualbox or vmware, and check manually what is doing. the chances that one particular machine is slow because of vagrant, are very low if any. What you can test, is do a vagrant destroy, and comment out any script you have in the vagrant

Re: [vagrant-up] Using /vagrant properly

2014-02-26 Thread Alvaro Miranda Aguilera
hello, your english is pretty good, so no issues at all. (this came from someone that speak spanish) you have 2 options, as I see it. 1. Mount a folder with the permissions you need. http://docs.vagrantup.com/v2/synced-folders/basic_usage.html example: config.vm.synced_folder src/,

Re: [vagrant-up] Re: vagrant up hangs for a newly created Fedora 19 box. Can't login?

2014-02-27 Thread Alvaro Miranda Aguilera
(I also tried disabling the firewall just to be sure) Also whereas earlier i did get it to respond after messing with the network settings in virtual box, I can no longer reproduce that either :s On Friday, 14 February 2014 02:09:57 UTC+1, Alvaro Miranda Aguilera wrote: On Fri, Feb 14

Re: [vagrant-up] Storing AWS credentials out of the Vagrantfile

2014-03-03 Thread Alvaro Miranda Aguilera
yes, it's posible. check this http://minimul.com/create-your-own-git-server-easily-with-chef-and-the-vagrant-aws-plugin-part-1.html On Tue, Mar 4, 2014 at 9:06 AM, Christophe Pettus x...@thebuild.com wrote: Is it possible to use environment variables or something similar to store the AWS

Re: [vagrant-up] Can't figure out how to get network working with Mavericks Host / Fusion / Mavericks Guest

2014-03-10 Thread Alvaro Miranda Aguilera
vagarant will do aport forward 222 to guest 22 so you should be able to do ssh vagrant@localhost -p and, you should be able to set gui to true, and use the gui, On Tue, Mar 11, 2014 at 12:59 PM, Michael Moscardini moscardin...@gmail.com wrote: Hoping someone can help me out. Are

Re: [vagrant-up] Re: Adding a public network makes VM unusable

2014-03-13 Thread Alvaro Miranda Aguilera
, March 13, 2014 7:09:40 PM UTC+13, jean.jordaan wrote: On 13 Mar 2014 4:45 vm., het Alvaro Miranda Aguilera kik...@gmail.comjavascript: geskryf: yes it's. can you share your vagrantfile? I can give it a try Please see earlier in this thread for my vagrantfile. -- You received

Re: [vagrant-up] Re: Adding a public network makes VM unusable

2014-03-13 Thread Alvaro Miranda Aguilera
: Mounting shared folders... alvaros-mini:lxc-host alvarom$ On Fri, Mar 14, 2014 at 10:44 AM, Alvaro Miranda Aguilera kiki...@gmail.com wrote: sorry for that, yeah saw it. Vagrant version: 1.2.2 Can you please update? at least 1.4.3 and try? when you use public_network in virtualbox

Re: [vagrant-up] Control where vagrant/virtualbox stores disks

2014-03-14 Thread Alvaro Miranda Aguilera
On Sat, Mar 15, 2014 at 12:42 AM, David Karlsen davidkarl...@gmail.comwrote: VirtualBox.xml Hello, just change the path of the default VMs on VirtualBox.xml Alvaro. -- You received this message because you are subscribed to the Google Groups Vagrant group. To unsubscribe from this group

Re: [vagrant-up] Control where vagrant/virtualbox stores disks

2014-03-17 Thread Alvaro Miranda Aguilera
VBOX_USER_HOME should control? If I have to edit a central xml-file it's not very adminable - and also, since there is one single VirtualBox.xml it's not really feasable to keep it separated (e.g. point to different paths) for each job. kl. 01:25:56 UTC+1 lørdag 15. mars 2014 skrev Alvaro Miranda

Re: [vagrant-up] Re: Private Network using VirtualBox-DHCP

2014-03-17 Thread Alvaro Miranda Aguilera
On Tue, Mar 18, 2014 at 12:10 PM, Nic' houillo...@gmail.com wrote: uillet 2013 Hello, you did reply an email from 2013.. taking vagrant move very fast, best is just create a new one. Are you using virtualbox or vmware? for virtualbox, it should work.. for vmware, I have been reading some

Re: [vagrant-up] How to configure Pyramid project in Vagrant

2014-03-18 Thread Alvaro Miranda Aguilera
did you shoot the same question on stack overflow? http://stackoverflow.com/questions/22474209/how-can-i-configure-vagrant-with-pyramid-project you need to provide more informatiom, what you mean by pyramid? On Tue, Mar 18, 2014 at 8:33 PM, Abdul Wahid abdulwahi...@gmail.com wrote: Hi, I

Re: [vagrant-up] How to configure Pyramid project in Vagrant

2014-03-18 Thread Alvaro Miranda Aguilera
found this, still no idea what pyramid is.. https://github.com/Version2beta/vagrant-pyramid On Wed, Mar 19, 2014 at 9:55 AM, Alvaro Miranda Aguilera kiki...@gmail.comwrote: did you shoot the same question on stack overflow? http://stackoverflow.com/questions/22474209/how-can-i-configure

Re: [vagrant-up] mdns in boxes on mac and windows

2014-03-23 Thread Alvaro Miranda Aguilera
On Mon, Mar 24, 2014 at 7:28 AM, Eugene Vilensky evilen...@gmail.comwrote: mDNS o in the other way around, what happen i f you enable ipv6 on the centos? at the end of this blog post, seems is just a 4 to 5 seconds delay, not sure if apply to your case

Re: [vagrant-up] Port forwarding issue with TP-LINK wireless USB

2014-03-24 Thread Alvaro Miranda Aguilera
Adapter in VirtualBox. As soon as I do, I lose my connection. On Monday, March 24, 2014 8:08:36 PM UTC-4, Alvaro Miranda Aguilera wrote: firt thing that came to my mind is the vm is taking over the usb. if you go to the virtualbox gui, do you see anything on the USB part of the configuration

Re: [vagrant-up] Vagrant Box Name error leads to puppet PATH issue

2014-03-26 Thread Alvaro Miranda Aguilera
plus, tell us, the machine where this is failing OS? host is 64bit? I have been reading that are some issues with some 32 bit boxes on 64 bit host, seems due how the were created, or how they are imported.. not sure yet.. On Thu, Mar 27, 2014 at 9:56 AM, Alvaro Miranda Aguilera kiki

Re: [vagrant-up] vagrant up gives an error with Vagrant 1.5.0 on Mavericks

2014-03-26 Thread Alvaro Miranda Aguilera
Hello There. you should be able to see the plugin name with: vagrant plugin list then: vagrant plugin uninstall hostmanager [root@ml330 ~]# vagrant plugin uninstall -h Usage: vagrant plugin uninstall name [name2 name3 ...] [-h] -h, --help Print this help

Re: [vagrant-up] Vagrant share's funky url stuck on the Welcome to Nginx page

2014-03-28 Thread Alvaro Miranda Aguilera
what happen if you put server_name *** On Sat, Mar 29, 2014 at 1:05 AM, Jeanmichel Cote jeanmichelc...@gmail.comwrote: Well, thanks for answering. You may be right. But i'm not sure about that yet. Here's my nginx code: server { listen 80; server_name

Re: [vagrant-up] services after vagrant up

2014-03-28 Thread Alvaro Miranda Aguilera
What is your host Operating system? In order to not having 3 vms (multi machine), you may want to try LXC container, or docker are you familiar with any of those technologies ? Alvaro. On Fri, Mar 28, 2014 at 10:14 PM, mierda mierda sergio.mie...@gmail.comwrote: I've created a machine with

Re: [vagrant-up] How to run ruby script based on a specific provider in Vagrantfile ?

2014-03-30 Thread Alvaro Miranda Aguilera
+provisioners.map { |p| p.prepare } 22 + end On Mon, Mar 31, 2014 at 10:45 AM, Alvaro Miranda Aguilera kiki...@gmail.com wrote: Hello there, got it, on the host. for the multiple running thing, which if found also, I did a dirty trick. Icreated a variable: #variable used

[vagrant-up] Multinode for Oracle RAC Cluster

2014-04-01 Thread Alvaro Miranda Aguilera
Hello There I have created some vagrant boxes for Oralce Linux tailored to Oracle RAC Cluster so, if you use o you know someone what work with Oracle Databases and may find this usefull please share the folowing link

Re: [vagrant-up] vagrant fails on a fresh install

2014-04-02 Thread Alvaro Miranda Aguilera
try with vagrant init hashicorp/precise64 if you want to download the machine from Vagrantcloud otherwise the issue is he doesn't know where to find that precise64 if you are reading some documentation, before 1.5.x came out, the Vagrantfile required a box for box name and box_url to point

Re: [vagrant-up] Multi-provider Vagrant Boxes

2014-04-02 Thread Alvaro Miranda Aguilera
them in the Vagrant Cloud. On Wednesday, April 2, 2014 3:44:03 AM UTC-5, Alvaro Miranda Aguilera wrote: if you host the box in vagrant cloud, you can hace thar, 1 name 2 providers in the vagrabt cloud you will be creating a pointer, not uploading the actual machine, so nothing stops you

Re: [vagrant-up] Editing $PATH for vagrant user

2014-04-02 Thread Alvaro Miranda Aguilera
On Thu, Apr 3, 2014 at 9:20 AM, Sean Easter sean.m.eas...@gmail.com wrote: PATH=/home/vagrant/anaconda/bin:$PATH i am a bit lost, I am asuming, your scripts are running as root and it's fine, and then, you want to execute some commands as vagrant user the script is run as root, if you want to

Re: [vagrant-up] Vagrant Shell action - not allowing to hit a port while doing vagrant up

2014-04-03 Thread Alvaro Miranda Aguilera
if you redirect the port from vagrant, you could be able to do curl http://localhost:8999 c6405 is the name of the host of the guest machine? if c6405 is the host machine, how name resolution works? can you ping c6405 ?? On Thu, Apr 3, 2014 at 8:33 PM, Saurabh Mishra

Re: [vagrant-up] Permission synced folder

2014-04-05 Thread Alvaro Miranda Aguilera
On Sat, Apr 5, 2014 at 6:27 PM, Stefano Cognigni stefano.cogni...@gmail.com wrote: ['dmode=664,fmode=660'] try in this way: ['dmode=664','fmode=660'] -- You received this message because you are subscribed to the Google Groups Vagrant group. To unsubscribe from this group and stop

Re: [vagrant-up] Re: shell provisioner: The following settings shouldn't exist: id

2014-04-07 Thread Alvaro Miranda Aguilera
Hello, What do you mean by override? that is example - run this_for_vmware.sh - run this_for_virtualbox.sh ??? On Tue, Apr 8, 2014 at 10:57 AM, Kurt Bosselman k...@getlive.ly wrote: Vagrant 1.5.1 On Monday, April 7, 2014 3:51:28 PM UTC-7, Kurt Bosselman wrote: I'm trying to use this

Re: [vagrant-up] Re: Using Qemu instead of VirtualBox?

2014-04-09 Thread Alvaro Miranda Aguilera
depending on the kernel you have there, you could have xen within xen, OR, the best, will be LXC or docker inside any vm. What app will run inside that qemu instance? On Wed, Apr 9, 2014 at 7:35 AM, blong brianbl...@gmail.com wrote: Can anyone speak more to this topic? I'm new to QEMU, but

Re: [vagrant-up] Vagrant 1.5.2 fails to spin up a CentOS 6.5 VM at Digital Ocean provider because rsync is missing

2014-04-11 Thread Alvaro Miranda Aguilera
that rsync is installed if you use rsync sync once the machine is up and running. your build is failing because 6.5 doesn't came with rsync? why don't use 6.4 and do yum -y update ? On Fri, Apr 11, 2014 at 2:24 PM, Thiago Moreira tmoreira2...@gmail.comwrote: Hi there, I'm trying to

Re: [vagrant-up] Windows download gives access denied

2014-04-13 Thread Alvaro Miranda Aguilera
as today it works did you re-check? On Fri, Apr 11, 2014 at 4:37 AM, Daniel Ellis ellis...@gmail.com wrote: Not sure where to report this, but when trying to download the Windows image from here http://www.vagrantup.com/downloads.html, I get an access denied

Re: [vagrant-up] What would cause Vagrant to run the same provisioners multiple times on up and destroy?

2014-04-14 Thread Alvaro Miranda Aguilera
hello, I have no expiernce with AWS, but you need the provisioner block to be included in the provider? if I had to do the same in virtualbox, I will put an end after those override, if you have time, move the end from line 53 to line 41. On Tue, Apr 15, 2014 at 10:44 AM, Steve Kirkpatrick

Re: [vagrant-up] What would cause Vagrant to run the same provisioners multiple times on up and destroy?

2014-04-15 Thread Alvaro Miranda Aguilera
will post another question once I make the planned expansion to my Vagrantfile. Thanks again for your help. Steve. On Monday, April 14, 2014 9:07:29 PM UTC-7, Alvaro Miranda Aguilera wrote: hello, I have no expiernce with AWS, but you need the provisioner block to be included

Re: [vagrant-up] Re: Maven Clean Fails on Linux Vagrant Shared Drive

2014-04-16 Thread Alvaro Miranda Aguilera
your suggestions, Alvaro. On Tuesday, April 15, 2014 8:45:40 PM UTC-4, Alvaro Miranda Aguilera wrote: Hello, The way the shared folder is implemented,is not a real filesystem, so some languages have problems with the code in there. I know python fail on some operations, so maybe your

Re: [vagrant-up] About Inline scripts in Vagrant file

2014-04-17 Thread Alvaro Miranda Aguilera
hello, check this vagrantfile https://github.com/mross462/Vagrantfile/blob/master/Vagrantfile On Tue, Apr 15, 2014 at 10:23 AM, Aravindh Varadharaju varadharaju.aravi...@gmail.com wrote: Hi I am a newbie to vagrant and would like to know if something that I am thinking of is possible.

Re: [vagrant-up] After adding Desktop to Centos 6.5 - vagrant ssh fails

2014-04-20 Thread Alvaro Miranda Aguilera
Try this: chkconfig --list | grep -i network when you add Desktop, it enable NetworkManager if the previous command show netwoek manager on do chkconfig NetworkManager off service NetworkManager off and then try vagrant reload -- You received this message because you are subscribed to the

Re: [vagrant-up] SSH: Connection timeout

2014-04-22 Thread Alvaro Miranda Aguilera
will be better if you can share the vagrantfile in pastebin or as a gist On Tue, Apr 22, 2014 at 8:45 PM, Aurélien Praga aurelien.pr...@gmail.comwrote: Hello, I'm trying to launch an environment made with puphpet but there is a problem with ssh. Here is the log: Bringing machine

Re: [vagrant-up] Re: vagrant up hangs on booting centos 5 32 bits box on a ubuntu server 12.04 x64 hosts

2014-04-22 Thread Alvaro Miranda Aguilera
please share the vagrantfile On Wed, Apr 23, 2014 at 8:37 AM, Remi Hakim r...@datadoghq.com wrote: Still the same issue after upgrading the host to ubuntu 14.04 On Friday, April 18, 2014 7:21:08 AM UTC-4, Remi Hakim wrote: Hi. I'm having a weird issue with a vagrant box that has been

Re: [vagrant-up] using a different username for provisioning

2014-04-22 Thread Alvaro Miranda Aguilera
as I see it, that is the user that is used for all operations. if you specify a new user with config.ssh.username then you can use that other user and not have vagrant user at all.. On Wed, Apr 23, 2014 at 6:28 AM, Edward Bridges ebrid...@squarespace.comwrote: Hi, Is it possible to have

Re: [vagrant-up] Way to resume failed provisioning / tips for debugging a vagrantfile?

2014-04-23 Thread Alvaro Miranda Aguilera
Hello, Vagrant will automate what you tell Vagrant to automate. So, what you should think is, what to do fi something change or you go half way trough.. If a end user was using your Vagrantfile, then he should be able to do vagrant destroy, vagrant up and get a working environment. In your

Re: [vagrant-up] private network dhcp ips

2014-04-24 Thread Alvaro Miranda Aguilera
is your host linux? to me, is running in your host not on the guest. On Thu, Apr 24, 2014 at 8:19 PM, Вячеслав Артюхов artyukho...@gmail.comwrote: Hello! I have following code in Vagrantfile: config.vm.define :master do |master| master.vm.box = centos64 master.vm.provider

Re: [vagrant-up] Re: initialize': undefined method `scope' upon issuing vagrant up

2014-04-24 Thread Alvaro Miranda Aguilera
your error is coming from: vagrant-berkshelf-1.3.7 can you remove it? On Fri, Apr 25, 2014 at 11:24 AM, Knox L gonzoliv...@gmail.com wrote: updated paste bin, stack trace was cut short http://pastebin.com/u1PFiy5z On Thursday, April 24, 2014 4:18:25 PM UTC-7, Knox L wrote: Hey guys, I'm

Re: [vagrant-up] win8.1 - Lokale Domain nicht mehr aufrufbar!

2014-04-24 Thread Alvaro Miranda Aguilera
On Fri, Apr 25, 2014 at 3:15 AM, Mario Linz geli...@gmx.de wrote: 192.168.56.105 I can reply in Spanish? will that work? :) what happen is you do http://*192.168.56.105 * *?* -- You received this message because you are subscribed to the Google Groups Vagrant group. To unsubscribe from

Re: [vagrant-up] Way to resume failed provisioning / tips for debugging a vagrantfile?

2014-04-24 Thread Alvaro Miranda Aguilera
again (so it would configure the whole VM again). Thanks, Kevin On Wednesday, April 23, 2014 8:18:51 PM UTC-4, Alvaro Miranda Aguilera wrote: Hello, Vagrant will automate what you tell Vagrant to automate. So, what you should think is, what to do fi something change or you go half way

Re: [vagrant-up] Correctly setting with the working path (CentOS)

2014-04-25 Thread Alvaro Miranda Aguilera
hello, for the first issue, it's permissions, by default the permissions won't be very user friendly.. in the host, create one dir per user, and mount that as the /home/user if the user is already created check the documentation and use the user group if the user is not created, use gid/uid

Re: [vagrant-up] win8.1 - Lokale Domain nicht mehr aufrufbar!

2014-04-25 Thread Alvaro Miranda Aguilera
sounds something local to the guest. Can you paste the output of these commands? iptables -L netstat -anp | grep ':port' not sure if it's port :80 or :443 at the guest, it could be firewall (iptables) or the webserver is not listening on the ip.. I am thinkig one of those 2 scenarios are

Re: [vagrant-up] Vagrant persistent changes in the box

2014-04-25 Thread Alvaro Miranda Aguilera
i havent seen that my self, but there is other user reporting the same can you test other ubuntu image? On Sat, Apr 26, 2014 at 4:44 AM, Marcos Cano mc...@stsa.info wrote: im a little bit confused about how this is manage... maybe this is part of the intended way of working of Vagrant. i

Re: [vagrant-up] Vagrant + Grub Prompt

2014-04-25 Thread Alvaro Miranda Aguilera
that means the boot process in the guest is not working. What stop you to do vagrant destroy and vagrant up to get a new working box? On Sat, Apr 26, 2014 at 6:00 AM, Kishore Kumar Vaishnav kishorevaish...@gmail.com wrote: My vagrant up is not working anymore, which was working perfectly

Re: [vagrant-up] Correctly setting with the working path (CentOS)

2014-04-25 Thread Alvaro Miranda Aguilera
On Fri, Apr 25, 2014 at 10:15 PM, Goodbytes for...@gmail.com wrote: Could not chdir to home directory /home/vagrant: No such file or directory when that error happen? If there is at boot? when machine start? or after the machine boots, say one of the scripts? can you paste where you see

Re: [vagrant-up] Correctly setting with the working path (CentOS)

2014-04-26 Thread Alvaro Miranda Aguilera
directory for a user On Saturday, 26 April 2014 04:09:00 UTC+1, Alvaro Miranda Aguilera wrote: On Fri, Apr 25, 2014 at 10:15 PM, Goodbytes for...@gmail.com wrote: Could not chdir to home directory /home/vagrant: No such file or directory when that error happen? If there is at boot? when

Re: [vagrant-up] Re: Rsync on Windows

2014-04-28 Thread Alvaro Miranda Aguilera
usually those rsync came with an ssh utility , and you should use it as rsync -e 'path/to/ssh' try to use the rsync from command line and test i havent used the rsync sync from vagrant but as command line rsync i use this one http://www.opbyte.it/grsync/download.html take note it require to

Re: [vagrant-up] configuring swap file size for centos

2014-04-28 Thread Alvaro Miranda Aguilera
what;s the output of grep -i swap /etc/fstab grep -i swap /proc/meminfo ? On Tue, Apr 29, 2014 at 10:43 AM, Phil Swenson phil.swen...@gmail.comwrote: Is there anyway to specify swap file size for a centos box? config.vm.box_url =

Re: [vagrant-up] Re: Rsync on Windows

2014-04-28 Thread Alvaro Miranda Aguilera
help. Ian On Monday, April 28, 2014 11:37:43 AM UTC+1, Alvaro Miranda Aguilera wrote: usually those rsync came with an ssh utility , and you should use it as rsync -e 'path/to/ssh' try to use the rsync from command line and test i havent used the rsync sync from vagrant but as command line

[vagrant-up] Use Vagrant to manage a running VM without importing ?? will work?

2014-04-28 Thread Alvaro Miranda Aguilera
Hello, I haven't tested this yet, but I am foreseen it wont work.. I have a bunch of big virtualmachines appliances that came in .ova format this VM are created by Oracle, so at import there is an EULA you need to accept, and then the vm will be imported and all ok. From here, normal process

Re: [vagrant-up] receiving logs of a specific provider

2014-04-29 Thread Alvaro Miranda Aguilera
what kind of logs you are after? VAGRANT_LOG=debug vagrant up doesn't help ? On Tue, Apr 29, 2014 at 8:28 PM, Christian Berendt bere...@b1-systems.dewrote: I want to receive the logs of the used provider (in my case Virtualbox) of a box using the Vagrant CLI. At the moment I'm not sure

Re: [vagrant-up] Building a base box

2014-04-29 Thread Alvaro Miranda Aguilera
I can think in few. 1. Ensure NetworkManager is disabled if installed (check with chkconfig --list | grep -i networkmanager) 2. Remove the HW ADDRESS from /etc/sysconfig/network-scripts/ifcfg-eth* 3. Ensure configuration of ifcfg-eth0 is to dhcp, enabled to boot the minimal should be:

Re: [vagrant-up] Vagrant+Yii - permission problem

2014-04-30 Thread Alvaro Miranda Aguilera
can you paste the shared folder part from the vagrantfile ? On Wed, Apr 30, 2014 at 11:38 PM, Daniel Salamon salid...@gmail.com wrote: Hi people, I am trying to set up a Yii project in a Vagrant driven VM, but I'm having problems with file permissions. The project has an *app/runtime*

Re: [vagrant-up] Mapping a synced folder to user's home directory

2014-05-01 Thread Alvaro Miranda Aguilera
As for the home, test this It worked on windows File.expand_path('~') On Thu, May 1, 2014 at 11:50 PM, Alvaro Miranda Aguilera kiki...@gmail.comwrote: yes, use this as an example. if RUBY_PLATFORM.include? 'linux' if c['bridged'] == 'home' b.vm.network

Re: [vagrant-up] configuring swap file size for centos

2014-05-01 Thread Alvaro Miranda Aguilera
On Thu, May 1, 2014 at 3:48 PM, phil swenson phil.swen...@gmail.com wrote: grep -i swap /etc/fstab grep -i swap /proc/meminfo Hello, If the VM/BOX size is not an issue, since for Oracle you need to have a bunch of files installed, give a try to: racattack/oracle65 I use that (i created it,

Re: [vagrant-up] Re: Seeing Waiting for the VM to finish booting... with CentOS and Vagrant 1.5.4

2014-05-01 Thread Alvaro Miranda Aguilera
Before cloning you need to do at least 2 steps. 1. remove /etc/udev/rules.d/70-net-persistence.rule or similar name 2. remove ADDRESS from /etc/sysconfig/network-scripts/ifcfg-eth* Example commands that you can use: for nic in /etc/sysconfig/network-scripts/ifcfg-eth* do sed -i /HWADDR/d $nic

Re: [vagrant-up] configuring swap file size for centos

2014-05-05 Thread Alvaro Miranda Aguilera
this make sense? Now, I’ll try running my recipe with oracle-xe and report the error I get… thanks phil On Thu, May 1, 2014 at 5:59 AM, Alvaro Miranda Aguilera kiki...@gmail.com wrote: On Thu, May 1, 2014 at 3:48 PM, phil swenson phil.swen...@gmail.comwrote: grep -i swap /etc/fstab

Re: [vagrant-up] Re: Running action after the shared folders are mounted

2014-05-05 Thread Alvaro Miranda Aguilera
check this: http://razius.com/articles/launching-services-after-vagrant-mount/ On Fri, May 2, 2014 at 8:18 AM, m...@bocoup.com wrote: Hi Federico, I am looking to do the same thing--could you share your solution? Thanks! On Monday, September 16, 2013 3:47:53 AM UTC-4, federico gimenez

Re: [vagrant-up] configuring swap file size for centos

2014-05-05 Thread Alvaro Miranda Aguilera
trying to figure out chef, do some automation, and present the results. phil On Mon, May 5, 2014 at 5:39 PM, Alvaro Miranda Aguilera kiki...@gmail.com wrote: hello, fromn the output seems the VM should have some swap defined (the UUID) line, but is not active, those 0k lines Can you

Re: [vagrant-up] Vagrant Windows interactive (gui) scripts?

2014-05-06 Thread Alvaro Miranda Aguilera
Host windows, or guest windows? On Wed, May 7, 2014 at 12:05 PM, Brian Johnson sherb...@gmail.com wrote: Does someone have a recipe for making either a provisioning script, or something run over 'vagrant ssh' able to access the Windows GUI? -- You received this message because you are

Re: [vagrant-up] error vm: * The following settings shouldn't exist : network

2014-05-07 Thread Alvaro Miranda Aguilera
link to the book? what step in the book you are? On Wed, May 7, 2014 at 10:02 PM, Shadha AL Amri umm.em...@gmail.com wrote: Hi I am following OpenStack Cloud Computing CookBook in order to create cloud environment am just in the first step where I install Virtualbox 4.2.16 and Vagrant

Re: [vagrant-up] Automatic Windows 'hosts' Update in a DHCP Environment

2014-05-08 Thread Alvaro Miranda Aguilera
that to a file that I can modify on-the-fly? I might experiment with that just a bit. Thanks. On Wednesday, May 7, 2014 6:25:34 PM UTC-5, Alvaro Miranda Aguilera wrote: you are using dhcp, so the ip will be different each time the dhcp give you a new one, or when you are in a different dhcp server

Re: [vagrant-up] Re: Automatic Windows 'hosts' Update in a DHCP Environment

2014-05-08 Thread Alvaro Miranda Aguilera
On Fri, May 9, 2014 at 6:43 AM, Mark McFate summitt.dwel...@gmail.comwrote: /System32/Windows/drivers/etc/hosts notepad c:\windows\System32\Windows\drivers\etc\hosts run as administrator -- You received this message because you are subscribed to the Google Groups Vagrant group. To

Re: [vagrant-up] Determining redirected ports when auto_correct: true

2014-05-09 Thread Alvaro Miranda Aguilera
what are you missing with vagrant ssh-config ? On Sat, May 10, 2014 at 8:28 AM, Ben Hines bhi...@gmail.com wrote: I often find myself firing up virtualbox and looking at the networking tab under port forwarding on my vagrant boxes to see this information. I think vagrant will also tell you

Re: [vagrant-up] vagrant 1.6.1 + docker provider demo Linux/Windoze

2014-05-10 Thread Alvaro Miranda Aguilera
vagrantfile you are using? what are you expecting to happen, what is happening, and what is not working? by windoze, you mean Microsoft Windows? what version? the post in 3 said xp, I assume 32bit.. not sure what you have got at your windoze On Fri, May 9, 2014 at 11:05 PM, Robert Berger

Re: [vagrant-up] Nested VM inside VM should work with enough hardware, right?

2014-05-11 Thread Alvaro Miranda Aguilera
to try LXC. - Brian On Sun, May 11, 2014 at 7:03 PM, Alvaro Miranda Aguilera kiki...@gmail.com wrote: Can I ask why you are suing 2 expensive virtualizations? the performance should not be a surprise here. Why you need Virtualbox running inside vmware on the firstplace? Are other

Re: [vagrant-up] Re: Connection timeout running vagrant up with custom box on Windows

2014-05-13 Thread Alvaro Miranda Aguilera
have you tried testing, with 1.5.2 ? to discard vagrant 1.6 On Tue, May 13, 2014 at 5:50 PM, Alex Demidov alexeydemi...@gmail.comwrote: I have exactly the same problem - 3 different developers on Windows and two different Vagrant configurations (one uses opscode_ubuntu-12.04_provisionerless

Re: [vagrant-up] Vagrant with Docker provider/provisioner does not share folders

2014-05-15 Thread Alvaro Miranda Aguilera
hello, if the host doesn't have/cant run docket, I understand by default will run a boot2docker instance, to run docker inside. as you are on arch linux, this should not be the case. Can you try this part without '/' myproject/base ? On Thu, May 15, 2014 at 8:07 PM, Alper Ortac

Re: [vagrant-up] Is it possible to specify the location of a VM virtual disk in Vagrantfile?

2014-05-15 Thread Alvaro Miranda Aguilera
usuing Vmware? Virtualbox? I know for Vmware there is a variable you can set in the vagrantfile, and that will tell where to store the disks. for virtualbox, not such thing, the vms are imported in the default virtualbox folder. with one environment variable you can override where the xml

Re: [vagrant-up] windows communicator settings

2014-05-17 Thread Alvaro Miranda Aguilera
does vagrant if rdp port is on a different port than 3389 ? or, does winrm fails as not all the vms have por 5985 forwarded? On Sat, May 17, 2014 at 11:19 AM, Michael Legleux legl...@gmail.com wrote: I created a base box of windows 7 and 8 using virtualbox. I configured the winrm according

Re: [vagrant-up] Problems installing Vagrant

2014-05-17 Thread Alvaro Miranda Aguilera
seems you are trying to run vagrant command inside the ubuntu guest that runs into your osx host? So, no need to do that. Once you have your vagrant guest running, you use vagrant to automate the setup of the vm (name, ip, networks, shared folders, fwd ports, etc) then you use the vagrant

Re: [vagrant-up] OSX 10.9.2, Fusion 6.0.3 and docker

2014-05-18 Thread Alvaro Miranda Aguilera
for the response, sorry about the delay on my side. On 16 May 2014, at 6:14, Alvaro Miranda Aguilera wrote: hello, Vagrant does what you tell vagrant to do. So, in the example 1, if you manually pull that docker image, it works? No. If I use the boot2docker image as just a VM, after POST

Re: [vagrant-up] Use box versioning without Vagrant Cloud?

2014-05-19 Thread Alvaro Miranda Aguilera
hello there, reading this mailing list, what I have been able to see is, you can create a json file and should work example this box https://vagrantcloud.com/racattack/oracle65 have this json file https://vagrantcloud.com/racattack/oracle65.json hope you can test something at your end with

Re: [vagrant-up] Vagrant 'EnableSendfile off' doesn't work

2014-05-19 Thread Alvaro Miranda Aguilera
do you have those files by chance in a shared folder? say virtualbox or vmware shared folders? if yes, try to don't use that, and use rsync to put the files in a real filesystem folder. if not, not sure what can be. On Mon, May 19, 2014 at 4:12 AM, Florian Pouchelet an0nym.e...@gmail.comwrote:

Re: [vagrant-up] Re: SLACKWARE VAGRANT AND SSH

2014-05-19 Thread Alvaro Miranda Aguilera
hello, the vagrant up happen on a new created box? If yes, be sure to remove mac address from network config files and remove 70-net-persistence file from /etc/udev/rules.d if any. this need to be done before packaging and creating the box file. Alvaro On Tue, May 20, 2014 at 2:03 AM, Davis

Re: [vagrant-up] Really really stupid question re Windows guests

2014-05-19 Thread Alvaro Miranda Aguilera
On Tue, May 20, 2014 at 9:51 AM, Jeff Sussna j...@ingineering.it wrote: n top of a Linux VM. I am lost on that part, Why it has to run on top of a linux vm? Packer is available for all the OS, and there is a project called packer windows to simplyfy the creation of windows boxes using packer.

  1   2   3   4   5   6   7   8   9   10   >