Re: [vagrant-up] Vagrant fails to initialize "Unable to find binary extension"

2016-01-05 Thread Alvaro Miranda Aguilera
Hello Ian. Are you installing from the official installer? Please try this. 1. rm -fr /opt/vagrant /Users//.vagrant.d/ Last part will delete the .vagrant.d folder in your directory, but will give you a clean setup. 2. hash -r 3. install Vagrant from the official installer. Please let me

Re: [vagrant-up] Could not find gem 'vagrant-triggers;vagrant error on Win7 (don't know how handle it)

2016-01-05 Thread Alvaro Miranda Aguilera
Hello, The message is telling that for some reason the information about the plugins is not accurate. Was Vagrant installed from the installers? can you remove all the plugins but vagrant-share: vagrant plugin list vagrant uninstall when all plugin removed: vagrant plugin list and try

Re: [vagrant-up] Getting Permission Denied on the hosts file

2016-01-05 Thread Alvaro Miranda Aguilera
Hello The error mean your user doesn't have access to update that file. Couple of options. 1. don't use the plugin host updater. vagrant plugin list vagrant plugin uninstall 2. Make sure your user without elevating privileges have access to read write to:

Re: [vagrant-up] VMs cannot communicate within a private network

2016-01-08 Thread Alvaro Miranda Aguilera
Hello. Is the network 192.168.1.x available in the host? If that network is used in the host it may cause problems. The vagrantfile looks good, the first thing I will test is using a network that is not used. 192.168.1. is common at home networks Alvaro On Fri, Jan 8, 2016 at 2:44 PM,

Re: [vagrant-up] Why can't I get a Vagrant box up with ubuntu/wily64? (Networking issue)

2016-01-08 Thread Alvaro Miranda Aguilera
Hello Seems ubuntu mode from "old network" to new network then back to "old network" https://bugs.launchpad.net/ubuntu/+bug/1522287 Have you test with that new box? Alvaro On Thu, Jan 7, 2016 at 2:05 PM, Brian Dant wrote: > Hello all, > > I'm having an issue with

Re: [vagrant-up] Vagrant / Virtualbox / host-only / can't access host (ping from guest)

2016-01-08 Thread Alvaro Miranda Aguilera
Hello, Did you try this Vagrantfile? Vagrant.configure(2) do |config| config.vm.box = "cbednarski/ubuntu-1404" config.vm.network "private_network", ip: "192.168.33.10" end Can you share your Vagrantfile? Thanks On Thu, Jan 7, 2016 at 9:47 PM, Wolfgang Klinger

Re: [vagrant-up] VirtualBox Guest Name Incorrect

2016-01-08 Thread Alvaro Miranda Aguilera
t, not > the Vagrant name (which is used correctly). > > Thanks. > > On Wednesday, 6 January 2016 04:41:00 UTC, Alvaro Miranda Aguilera wrote: >> >> Hello. >> >> Please have this following Vagranfile as example. >> >> run `vagrant status` an

Re: [vagrant-up] Help with docker provider

2016-01-08 Thread Alvaro Miranda Aguilera
Hello richard, if you got all in 1 Vagrantfile can you sahre it for review? if you got more than 1 file, can you zip and share? That will be easier to have a look locally and give it a go. Thanks Alvaro On Sat, Jan 9, 2016 at 12:59 AM, Richard O'flynn wrote: > My

Re: [vagrant-up] My corp proxy thinks vagrant's plugin installer is malware/spyware

2015-12-21 Thread Alvaro Miranda Aguilera
Hello, Just sharing this based on my past experience, not saying this is what you should do, just sharing what I would do. I think the idea behind the corportate proxy is separate/filter local traffic from internet. Check with your proxy admin guys if using a CLI tool should work or not. Based

Re: [vagrant-up] Vagrant 1.8 failed to initialize at a very early stage

2015-12-22 Thread Alvaro Miranda Aguilera
Hello Justin, Can you provide more information? What's your host os? which version? Are you using the package provided by vagrantup.com ? What's the md5sum/sha sum ? Thanks Alvaro. On Wed, Dec 23, 2015 at 4:08 AM, Justin Valentini < justin.valent...@gmail.com> wrote: > Hello everyone, > >

Re: [vagrant-up] How I should configure permission or another settings

2015-12-27 Thread Alvaro Miranda Aguilera
On Sun, Dec 27, 2015 at 11:50 PM, Edgar Oliveira wrote: >config.vm.synced_folder "data", "/var/www/foo" > > Hello, You need to replace this: config.vm.synced_folder "data", "/var/www/foo" With The line you pasted in the previous email.

Re: [vagrant-up] custom dns for multi domain host?

2015-12-27 Thread Alvaro Miranda Aguilera
Hello can you explain what you expect to have? On Sun, Dec 27, 2015 at 11:32 AM, pixel fairy wrote: > Hi, i already use hostmanager, but id like to do custom dns for a vagrant > network to test mutil domain hosts (web, email etc). > > i thought about just sharing through

Re: [vagrant-up] How I should configure permission or another settings

2015-12-27 Thread Alvaro Miranda Aguilera
On Sun, Dec 27, 2015 at 11:25 AM, Edgar Oliveira wrote: > "/var/www/foo", Hello What is the output of ls -al /var/www/foo And whats the user should be owning all this? ps aux | egrep -i 'apache|www|web' Thanks Alvaro. -- This mailing list is governed under

Re: [vagrant-up] Vagrant up error Windows 7

2015-12-27 Thread Alvaro Miranda Aguilera
Hello Vagrant try to connect to http://atlas.hashicorp.com/hahicorp/precise32.json Can you try to open that url with a web browser? Are you at any network that requires proxy? corporate proxy or university? Thanks Alvaro. On Sat, Dec 26, 2015 at 1:08 AM, Sergiy Golub

Re: [vagrant-up] How do I install vagrant scp plugin in offline mode

2015-12-19 Thread Alvaro Miranda Aguilera
can you share debug logs? in cmd.exe set VAGRANT_LOG=debug in bash/git/bash export VAGRANT_LOG=debug then vagrant plugin install That will show more info can you sahre that log in a gist? gitst.github.com Thanks Alvaro. On Sat, Dec 19, 2015 at 10:30 PM, Yogesh Sharma

Re: [vagrant-up] How do I install vagrant scp plugin in offline mode

2015-12-18 Thread Alvaro Miranda Aguilera
Hello You can download the file: https://rubygems.org/downloads/vagrant-scp-0.5.0.gem Then install like this: Alvaros-Mini:~ kikitux$ vagrant plugin install vagrant-scp-0.5.0.gem Installing the 'vagrant-scp-0.5.0.gem' plugin. This can take a few minutes... Installed the plugin 'vagrant-scp

Re: [vagrant-up] Vagrant port forwarding question.

2015-12-18 Thread Alvaro Miranda Aguilera
Hello I use it in that way: config.vm.network "forwarded_port", guest: 8500, host: 8500 can you add "-client 0.0.0.0 " to the consul line you use? Thanks Alvaro. On Sat, Dec 19, 2015 at 9:22 AM, wrote: > I run Vagrant in my OSX which brings up a Ubuntu VM and a consul

Re: [vagrant-up] custom dns for multi domain host?

2015-12-27 Thread Alvaro Miranda Aguilera
Hello hostmanager is the solution to one particular problem. When you create multiple VMS you need a way each vm know about the others, so are several ways of doing it. one is install that plugin other is put a 2nd nic on each VM with a fixed IP, and use a shell provision script to update

Re: [vagrant-up] Vagrant 1.8 failed to initialize at a very early stage

2015-12-23 Thread Alvaro Miranda Aguilera
; the dpkg command to install 1.8. It installed successfully. > > I have 0 clue if that could affect things though. > > Thanks, > Justin > > On Tue, Dec 22, 2015 at 3:39 PM, Alvaro Miranda Aguilera <kiki...@gmail.com > <mailto:kiki...@gmail.com>> wrote:

Re: [vagrant-up] F5 VPN and vagrant networking problems

2015-12-29 Thread Alvaro Miranda Aguilera
Hello, My impression here will be if you stop that vagrant box, and turn it on from the VMWare GUI, vmware should give you the same message. If this is correct, then it looks more as a VMWare feature. On the other hand, if vmware boot ok, and vagrant fail, then that will require more review and

Re: [vagrant-up] error in vagarant up with aerospike and hashicorp

2015-12-28 Thread Alvaro Miranda Aguilera
On Tue, Dec 29, 2015 at 1:43 AM, Rachel Shkop wrote: > URL: https://atlas.hashicorp.com/aerospike/centos-6.5 > Error: Failed writing body (0 != 1133) > Hello, I was able to use that box just fine, so the vm side of things is fine. Be sure you are running cmd.exe or

Re: [vagrant-up] Running Ruby During Provisioning

2015-12-28 Thread Alvaro Miranda Aguilera
Hello, Have a look at the plugin vagrant-trigger. It does have several stages and seems to allow the level of control you are after. Alvaro. On Tue, Dec 29, 2015 at 5:53 AM, James Carr wrote: > Hey All, > > I have a snippet of ruby in my Vagrantfile that works well

Re: [vagrant-up] Re: mysterious errors with concurrent vagrant cmds: Could not find a registered machine with UUID

2015-11-25 Thread Alvaro Miranda Aguilera
Hello, My suggestion is to create one VBOX_USER_HOME and run the other command per job so each job will have his own VBOX_USER_HOME folder, in this way parallel runs will be run on separate VBOX folders. and setproperty will be run and configure that VBOX_USER_HOME config, so need to be unique

Re: [vagrant-up] Vagrant up encountering SSH error "The SSH command responded with a non-zero exit status"

2015-11-25 Thread Alvaro Miranda Aguilera
l Box are fine because I have been > using other vagrant boxes without issues. > It is something to do with tty - SSH requires tty by default. But I don't > know how to tell Vagrant not to use tty for SSH. Any idea? > > On Wednesday, November 25, 2015 at 12:30:25 AM UTC-5,

Re: [vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-11-27 Thread Alvaro Miranda Aguilera
Hello, If you comment those out, and then use the gui I think the result will be the same. I think if you can came up with the VBoxManage that can do what you are afterm then you may use a virtualbox block to run that, and not use the out of the box forward port. make sense? Thanks Alvaro

Re: [vagrant-up] Vagrant up encountering SSH error "The SSH command responded with a non-zero exit status"

2015-11-24 Thread Alvaro Miranda Aguilera
Hello, The first thing is to check if your installation is healthy. mkdir precise64 cd precise64 vagrant init -m hashicorp/precise64 vagrant up If that works, then your Vagrant + Virtualbox installation is fine, and we can think the project you are trying to use has some requirements or issues.

Re: [vagrant-up] when can i clean out .vagrant.d\tmp

2015-11-24 Thread Alvaro Miranda Aguilera
Hello. YEs, those can be deleted. Your guess is correct. Those were temp data for a box download. Alvaro. On Tue, Nov 24, 2015 at 12:54 PM, Layla Sian wrote: > hi- > currently inside .vagrant.d\tmp I have 2 files, all called "box" followed by > a hash like

Re: [vagrant-up] Re: mysterious errors with concurrent vagrant cmds: Could not find a registered machine with UUID

2015-11-24 Thread Alvaro Miranda Aguilera
Hello, That error (from the subject) can happen in several cases. - When you copy a folder and that include a .vagrant folder, you can delete the folder and do vagrant up and that will create a new box. This apply to projectd where they don't ignore this folder. - You have some shared folder

Re: [vagrant-up] I'm new to Vagrant and I can't get past "Vagrant Up" (SOLVED)

2015-11-24 Thread Alvaro Miranda Aguilera
Hello. What;s your error, how you got there? Alvaro. On Tue, Nov 24, 2015 at 1:11 AM, sagar badhe wrote: > Hi All, > > I am also getting same error for windows 7. Can you please suggest what to > do to resolve this ? > > Regards > Sagar > > On Wednesday, 5 November 2014

Re: [vagrant-up] Calling scripts from Vagrant inside password protected BitBucket repo

2015-11-24 Thread Alvaro Miranda Aguilera
Hello, the url has an standard way to authenticate http://user:password@server:port/path/path/file.extension Give it a try and use the password from a ENV Variable. Will this work? Alvaro. On Mon, Nov 23, 2015 at 6:53 PM, wrote: > Hello All - > > I have been using

Re: [vagrant-up] Re: mysterious errors with concurrent vagrant cmds: Could not find a registered machine with UUID

2015-11-25 Thread Alvaro Miranda Aguilera
Hello. Do you use Virtualbox? I think I know the answer. It was some messages back on the same email thread, https://groups.google.com/d/msg/vagrant-up/UeGrB82PSTs/ad6JTz6AsQkJ If you are using the same user same source box, etc, you can have some collisions: Try to setup this as part of the

Re: [vagrant-up] Problem with network interface in windows

2015-11-30 Thread Alvaro Miranda Aguilera
Hello, What does say VirtualBox guy, when you go to preferences, network ? Alvaro On Tue, Dec 1, 2015 at 10:50 AM, wrote: > Hi! > > I've got a lot of probleme with VirtualBox and vagrant: > At the begining all was working at perfection but I don't understand why >

Re: [vagrant-up] Need to see real source IPs from behind port forwarding, can I disable SNAT?

2015-11-30 Thread Alvaro Miranda Aguilera
1:00:18 AM UTC-5, Alvaro Miranda Aguilera > wrote: >> >> Hello, >> >> If you comment those out, and then use the gui I think the result will be >> the same. >> >> I think if you can came up with the VBoxManage that can do >> what you are afte

Re: [vagrant-up] Can't perform first 2 steps in "getting started"

2015-11-30 Thread Alvaro Miranda Aguilera
On Tue, Dec 1, 2015 at 1:43 PM, Brian Wood wrote: > or:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol Hello. Are you behind some not very friendly proxy? Do you need to setup proxy? is setup? Thanks Alvaro -- This mailing list is governed under the

Re: [vagrant-up] vagrant up execution problem

2015-12-01 Thread Alvaro Miranda Aguilera
Hello, Don’t use Administrator. And try from a directory where your user have access cd cd Desktop I did tried and Vafrantfile is nice. What’s the output of vagrant version vagrant plugin list vagrant box list Thanks Alvaro. > On 1/12/2015, at 2:19 PM, Atef Hajlaoui

Re: [vagrant-up] Hyper-V From OSX

2015-11-29 Thread Alvaro Miranda Aguilera
Hello, Not all the virtualization allow nested virtualization so in AWS or other virtualization it may not work create an HyperV VM. Alvaro. On Mon, Nov 30, 2015 at 11:53 AM, Daniel Fabbri wrote: > Is is possible to create a Hyper-V box with a Linux guest OS using a OSX >

Re: [vagrant-up] Vagrant Vlad

2015-11-21 Thread Alvaro Miranda Aguilera
Hello! What’s Vagrant Vlad? If you are talking about this: https://github.com/hashbangcode/vlad I will suggest open an issue there and ask if what you require can be done. However it seem they are working on that in this issue:

Re: [vagrant-up] Vagrant (ubuntu) in Windows it's so slow

2015-11-21 Thread Alvaro Miranda Aguilera
Hello, How is the speed without vagrant? I don’t think Vagrant does any penalty on the speed of the project. Try copying the files to a local filesystem in the VM and if the project is small, try to host a copy in /dev/shm and see how it goes. Alvaro. > On 21/11/2015, at 12:24 PM, kenneth

Re: [vagrant-up] change MTU of a network interface (VirtualBox)

2015-11-21 Thread Alvaro Miranda Aguilera
Hello! If you know the file you want to use, or the command you need to run, will be quicker if you tell Vagrant to create the interface, but not configure. config.vm.network "private_network", ip: "192.168.50.4", auto_config: false Then, you can use a shell provisioner to copy a file

Re: [vagrant-up] Vagrant up does not work with VMWare provider

2016-01-10 Thread Alvaro Miranda Aguilera
Hello, For the Vagrant VMWare plugin to work, there is a setuid that is set on first time using the plugin. Can you sent an email to supp...@hashicorp.com for that? Thanks Alvaro On Sun, Jan 10, 2016 at 4:08 AM, Holger Piontek wrote: > Hi, > > I'm using Vagrant on the

Re: [vagrant-up] vagrant share's url returns "proxy loop detected at: hosted.websense"

2016-06-06 Thread Alvaro Miranda Aguilera
Hello, you can email support @ hashicorp.com for vagrant share issues. Thanks Alvaro On Fri, Jun 3, 2016 at 9:53 PM, HJ Chin wrote: > Hi everyone, > > I ran into this problem since yesterday. I'm not behind any proxy and it > was accessible all the while until yesterday. The

Re: [vagrant-up] How should I install them: Vagrant + Ubuntu Server + Virtualbox

2016-06-03 Thread Alvaro Miranda Aguilera
Hello Edgar! My suggestion will be use on HOST OS ubuntu 14.04 vagrant from download page latest virtualbox then test hashicorp/precise64 that should work out of the box, with no issues at all from there, if you change one component and the experience become not so nice, I will evaluate if

Re: [vagrant-up] HTTPS support

2016-06-03 Thread Alvaro Miranda Aguilera
a SSL certificate in my /home/{users}/vagrant folder? > > > On Thursday, 2 June 2016 01:12:20 UTC-4, Alvaro Miranda Aguilera wrote: >> >> Hello >> >> Vagrant create the VM, and configure the same >> >> Not sure if anyone use vlad here, so lets wait on anyon

Re: [vagrant-up] vagrant cannot get ENV var

2016-06-03 Thread Alvaro Miranda Aguilera
Can you try puts ENV['GIT_TOKEN'] if ENV['GIT_TOKEN'] Thanks Alvaro On Fri, Jun 3, 2016 at 8:55 AM, Mike Christofilopoulos wrote: > Hi all, > > im seeing this weird error when trying to start my vagrant box. > > -- error log start - >

Re: [vagrant-up] Allow more than one user to provision a vagrant setup

2016-05-25 Thread Alvaro Miranda Aguilera
Hello Bibek Vagrant is mean for Development work, so I will assume this is not production :) In the current directory of the project, a folder .vagrant.d will be created. Inside that folder is where Vagrant looks for information about AMI ID, etc. The easiest will be have the project in a

Re: [vagrant-up] How to modify loaded config between environment_load and machine_action_config_validate [PluginDevelopment]?

2016-05-25 Thread Alvaro Miranda Aguilera
Hello, Perhaps you can check the source code of Vagrant triggers plugin for ideas? https://github.com/emyl/vagrant-triggers Alvaro. On Wed, May 25, 2016 at 10:09 PM, Raimondas Rimkevičius wrote: > I'm trying to add some extra configuration data before *enviroment_load*, >

Re: [vagrant-up] Base box setting ssh.username and ssh.password generates "shouldn't exist: password" error

2016-05-29 Thread Alvaro Miranda Aguilera
On Sun, May 29, 2016 at 6:19 AM, BRIT wrote: > bp8.txt Can you share your bp8.txt ? It should be something like this: Vagrant.configure(2) do |config| config.ssh.username = "bob" config.ssh.password = "bobbob" end Thanks Alvaro. -- This

Re: [vagrant-up] The following settings shouldn't exist: password

2016-05-29 Thread Alvaro Miranda Aguilera
did reply the other email On Sun, May 29, 2016 at 6:11 AM, BRIT wrote: > I've created a number of package boxes on Windows and now I've running > through my notes to see what differences exist in the Linux side of things. > With a host running Ubuntu

Re: [vagrant-up] Re: Additional interface when assigning a private address in Vagrantile

2016-05-30 Thread Alvaro Miranda Aguilera
On Tue, May 31, 2016 at 10:07 AM, BRIT < buildingreliableitsoluti...@gmail.com> wrote: > for cmd.exe > set VAGRANT_LOG=debug > > for bash > export VAGRANT_LOG=debug > > then: > > vagrant up > > And share the generated text over a gist. (gist.github.com) Hello, are you installing Vagrant from

Re: [vagrant-up] Re: Additional interface when assigning a private address in Vagrantile

2016-05-30 Thread Alvaro Miranda Aguilera
Hello, Are you behind any firewall or proxy that may be stopping this to work? Or do you need to define a proxy? Please try this: curl -L https://atlas.hashicorp.com/cbednarski/ubuntu-1404.json If that works, then I would suggest reinstall vagrant on that machine. If after reinstall the issue

Re: [vagrant-up] Additional interface when assigning a private address in Vagrantile

2016-05-26 Thread Alvaro Miranda Aguilera
Hello, Can you check if the same happen with this box? cbednarski/ubuntu-1404 You can create a new Vagrantfile and add the networking part. Or you can update the current one and do vagrant destroy ; vagrant up Thanks Alvaro. On Fri,

Re: [vagrant-up] HTTPS support

2016-06-01 Thread Alvaro Miranda Aguilera
Hello Vagrant create the VM, and configure the same Not sure if anyone use vlad here, so lets wait on anyone perhaps you could open an issue there or see if they have any chat or mailing list for their projext. Thanks Alvaro On Wed, Jun 1, 2016 at 2:51 PM, akasophistikat

Re: [vagrant-up] does anyone else keep getting apt cant auth / untrusted errors when you vagrant up ubuntu?

2016-06-01 Thread Alvaro Miranda Aguilera
Hello, I am based in NZ, and lots of time I hit those, so I have to change the apt sources from nz to AU or US If you are in US, or using ust the global one, perhaps you can try some well known mirror/repo ? Alvaro. On Wed, Jun 1, 2016 at 6:04 PM, pixel fairy wrote: >

Re: [vagrant-up] Re: Additional interface when assigning a private address in Vagrantile

2016-05-31 Thread Alvaro Miranda Aguilera
t's obtaining DHCP settings from > somewhere... > > On Monday, May 30, 2016 at 3:11:51 PM UTC-7, Alvaro Miranda Aguilera wrote: >> >> >> On Tue, May 31, 2016 at 10:07 AM, BRIT <buildingrelia...@gmail.com> >> wrote: >> >>> fo

Re: [vagrant-up] Re: Vagrant up finishes but VM's not showing up in VirtualBox

2016-05-31 Thread Alvaro Miranda Aguilera
Hello, you need to provide more information what happen when doesnt work feel free to attach screenshot of what you see if you use cmd.exe on the user that fails please do set VAGRANT_LOG=debug vagrant up and share the generated output Thanks Alvaro On Tue, May 31, 2016 at 7:50 AM, Tuan Le

Re: [vagrant-up] Re: вагрант на существующей виртуальной машине

2016-06-19 Thread Alvaro Miranda Aguilera
To create boxes, have a look at packer (packer.io) Sample templates here: https://github.com/chef/bento Alvaro On Sat, Jun 18, 2016 at 12:58 PM, Yuri Makhno wrote: > yes > > -- > This mailing list is governed under the HashiCorp Community Guidelines - >

Re: [vagrant-up] вагрант на существующей виртуальной машине

2016-06-18 Thread Alvaro Miranda Aguilera
On Sat, Jun 11, 2016 at 4:48 AM, Yuri wrote: > у меня на виртуалке стоит сентос, собственный, не из боксов > установлен вагрант > существует ли возможность связать их так, как я обычно использую вагрант? > т.е., обязательно ли скачивать бокс? > ps по-английски понимаю, но

Re: [vagrant-up] vagrant vboxmanage verr_path_not_found when default machine folder on different drive

2016-06-18 Thread Alvaro Miranda Aguilera
Hello can you test with hashicorp/precise64 ? That will show better where the error is coming from Thanks On Sun, Jun 12, 2016 at 9:42 AM, Bill S wrote: > Windows 10 > Vagrant file is located on Drive E:\Vagrant\ubuntu-trusty-vb > Virtualbox machine folder F: > >

Re: [vagrant-up] Slow rails due to excessive sharing

2016-06-18 Thread Alvaro Miranda Aguilera
Hello, If you want to mount a local folder you can try this mkdir -p /var/tmp/rails_temp /var/tmp/rails_log mount --bind /var/tmp/rails_temp $RAILS_ENV/tmp/ mount --bind /var/tmp/rails_log $RAILS_ENV/log/ If that works, you can just use an script with run: "always" for that Alvaro On Wed,

Re: [vagrant-up] Vagrant ssh provision on Windows OpenSSH

2016-06-18 Thread Alvaro Miranda Aguilera
Hello The error is telling connection aborted, so something did interrup the connection. What happen if you do like this vagrant up --no-provision wait couple of minutes vagrant provision if this works, then its something with the windows services probably, say when network firewall or

Re: [vagrant-up] Get up-to-date information about Vagrant environments on my machine (workaround for vagrant global-status)

2016-06-18 Thread Alvaro Miranda Aguilera
Hello, Check VBoxManage list vms Vagrant will cache what he start/stop and its pretty consistent, however if a machine stops outside vagrant or get deleted, Vagrant will check on next vagrant status of said box. Thanks Alvaro. On Thu, Jun 9, 2016 at 7:24 AM, Davide Bontempelli

Re: [vagrant-up] Setting up Vagrant with VirtualBox running Ubuntu-Linux

2016-06-18 Thread Alvaro Miranda Aguilera
Hello, After installing Vagrant on windows, you are asked to reboot. did this reboot happen? Please not that hashicorp/precise64 is 12.04 and not 16.04. Thanks Alvaro On Sat, Jun 11, 2016 at 11:39 PM, Tim Fitzhardinge wrote: > Hi > > I have installed the latest

Re: [vagrant-up] detritus in /tmp

2016-06-18 Thread Alvaro Miranda Aguilera
whats the output of vagrant version and vagrant plugin list ? Thanks Alvaro On Wed, Jun 8, 2016 at 7:47 PM, Bill Houle wrote: > I'm on CentOS 6.8 with Vagrant 1.8.1 and VirtualBox 5.0.20 provider. > > When I run "vagrant foo" (an invalid command), I get 4 "vagrant" >

Re: [vagrant-up] Hook to know when all machines have started in a MultiMachine setup

2016-06-18 Thread Alvaro Miranda Aguilera
hello sorry for the delay have you done any progress here ? perhaps the best will be implement consul inside that setup ? Alvaro On Wed, Jun 1, 2016 at 5:12 AM, Bibek Shrestha wrote: > As the title says, I saw that there are hooks to know if one machine has > been

Re: [vagrant-up] How to resolve 'certifcate verify failed' on vagrant up

2016-01-15 Thread Alvaro Miranda Aguilera
Hello, By any chance, Are you in a corporate network with a corporate proxy? Alvaro On Fri, Jan 15, 2016 at 1:23 AM, Saeed Bhuta wrote: > Hi all, > > I'm getting the following error when running the 'vagrant up' command: > > ==> default: ERROR: Could not find a valid gem

Re: [vagrant-up] disabling ssh access to vagrant box

2016-01-13 Thread Alvaro Miranda Aguilera
Hello, can you please explain more? Are you shipping a vagrant box? they will be using vagrant to interact this? Can you describe the user experience? how they will be using this box? If you share with me, how you would stop me checking what is inside? Thanks Alvaro. On Thu, Jan 14, 2016 at

Re: [vagrant-up] Wordpress installation inside Vagrant box keeps redirecting back to http://localhost

2016-01-13 Thread Alvaro Miranda Aguilera
Hello, I did create this basic word press vagrant for some friends, feel free to copy/edit, etc, it's based on the Digital Ocean document, just I make it more simple since not all the features are needed. https://github.com/kikitux/wp-vagrant Alvaro On Wed, Jan 13, 2016 at 11:46 PM, Jimbo

Re: [vagrant-up] Very slow speed in upload

2016-01-13 Thread Alvaro Miranda Aguilera
Hello. if you are using the port 8080 that goes over the nat of virtualbox. Try to use the ip set from private_network. ifconfig will show you the ip, and try with that ip as test. If does better, you can put a fixed ip, and use that ip that will be directly from host to vm without nat. You will

Re: [vagrant-up] How to package a vagrant box to distribute to a end user with ssh login locked

2016-01-13 Thread Alvaro Miranda Aguilera
Hello, Docker images are a simple tar file. By default they don't have (or shouldnt) have ssh. If you share a Vagrantfile that includes the instructions to run a docker image, then vagrant will use boot2docker and run commands over ssh. They could run vagrant ssh and connect to the base box

Re: [vagrant-up] Options via browser to shutdown VM

2016-01-13 Thread Alvaro Miranda Aguilera
Hello Edgard. You can have a web browser, put a cgi file with bash, and run sudo poweroff. http://www.yolinux.com/TUTORIALS/LinuxTutorialCgiShellScript.html Does that helps? Alvaro On Thu, Jan 14, 2016 at 2:52 AM, Edgar Oliveira wrote: > Hello, > > Any idea to

Re: [vagrant-up] Vagrant host-only networking

2016-01-13 Thread Alvaro Miranda Aguilera
Hello Alex Without vagrant, when you create a private network in virtualbox you can specify parameters on that virtual network/swithc. like dhcp on/off, ip for the host. When you put private_network ip "192.168.128.2" vagrant will create/configure this network in the Virtualbox, and use

Re: [vagrant-up] CentOS 7 net-presistent.rules now gone?

2016-01-13 Thread Alvaro Miranda Aguilera
Hello, that feature was introduced in RH5, keep in RH6 and its gone in RH7. So not needed to delete that file since is not created. Valid for RH/Centos/SL/OL Alvaro On Wed, Jan 13, 2016 at 4:17 AM, nhadie ramos wrote: > > > Hi All, > > Has anyone successfully created a box

Re: [vagrant-up] Very slow speed in upload

2016-01-14 Thread Alvaro Miranda Aguilera
;, :id, "--paravirtprovider", "kvm"] Alvaro. On Thu, Jan 14, 2016 at 10:27 PM, mario rossi <testipaz...@gmail.com> wrote: > Hey! > that was clever: > > Thank you very much > > > 411.20 Mbit/s | 00:00:00 | 73.11 % | 133.30 MB / 182.32

Re: [vagrant-up] Vagrant Vsphere

2016-01-14 Thread Alvaro Miranda Aguilera
Hello Steff Are several vsphere plugins, which one are you using? If you are using this: https://github.com/nsidc/vagrant-vsphere The resource pool is on the GUI that defines the rules of the VM. You usually don’t needed. Test leaving that commented

Re: [vagrant-up] ansible_local installs, but cant find ansible

2016-01-14 Thread Alvaro Miranda Aguilera
Hello, Seems there is an issue with ansible_local. Can you check here? https://github.com/mitchellh/vagrant/issues/6870 They link to a PR that fix the issue that should be available on Vagrant 1.8.2 Thanks Alvaro. > On 14/01/2016, at 9:32

Re: [vagrant-up] Vagrant up error Windows 7

2016-01-16 Thread Alvaro Miranda Aguilera
Stanciu < alexa.stanc...@gmail.com> wrote: > I'm getting the same exact error, i can connect to > http://atlas.hashicorp.com/hahicorp/precise32.json and it returns > { > >- errors: >[ > - "Not found" > ] > > } > > On Sunday, 27

Re: [vagrant-up] Conditionally Network configuration in vagrantfile

2016-01-16 Thread Alvaro Miranda Aguilera
hello, probably ENV is a reserved word Can you try with a different name for that var? On Sun, Jan 17, 2016 at 3:28 AM, govind parashar wrote: > Hello > > I want to do conditionally network configuration in vagrantfile but my > condition (ENV['ENV'] == 'local')

Re: [vagrant-up] Options via browser to shutdown VM

2016-01-16 Thread Alvaro Miranda Aguilera
are after. If you got questions, just le me know, happy to help. Alvaro. On Sun, Jan 17, 2016 at 4:22 PM, Alvaro Miranda Aguilera <kiki...@gmail.com> wrote: > Hello Edgard. > > You need to find out where the cgi-bin directory is. > > Seems on ubuntu is here:

Re: [vagrant-up] Options via browser to shutdown VM

2016-01-17 Thread Alvaro Miranda Aguilera
] (13)Permission denied: exec of > '/usr/lib/cgi-bin/poweroff.sh' failed[Sun Jan 17 10:54:05 2016] [error] > [client 192.168.33.1] Premature end of script headers: poweroff.sh > What I got understood which the script, poweroff.sh, has a error or I > couldn't permissions to run it.Thanks &

Re: [vagrant-up] can i make a vagrant file for amazon-ami .. specifically amazon flavoured to be used as a local vagrant box

2016-01-18 Thread Alvaro Miranda Aguilera
Hello Do you created your box using amazon linux in virtualbox? Alvaro On Tue, Jan 19, 2016 at 4:29 AM, debugger.pk wrote: > as the title explains, can vagrant boot the amazon flavoured amazon-ami? > > i already have a public box at > >

Re: [vagrant-up] Re: Vagrant up First time running error

2016-02-08 Thread Alvaro Miranda Aguilera
Hello, Inside the Vagrantfile, will be some provisioning steps, one of those maybe have the step to get that pip installed. If doesn't, and the pip came in the base box, what you can try is update pip as the first provisioning script. Are you familiar with installing/updating pip? Alvaro. On

Re: [vagrant-up] facing issue in vagrant up command..

2016-02-04 Thread Alvaro Miranda Aguilera
Hello, The message show there is some issue with certificates. Do you know if you are behing a proxy (corporate proxy?) that use certificates? Alvaro On Thu, Feb 4, 2016 at 9:08 PM, Kaushik Thanki < kaushik.tha...@clariontechnologies.co.in> wrote: > I m working Nylas sync - engine > >

Re: [vagrant-up] How can I configure Vagrant to set ```NM_CONTROLLED``` to ```yes``` value ?

2016-02-05 Thread Alvaro Miranda Aguilera
On Fri, Feb 5, 2016 at 4:30 AM, Stéphane Klein wrote: > NM_CONTROLLED=no in /etc/sysconfig/network-scripts/ifcfg-eth0 Hello, You can have a shell provisioner that run always. And does something like this. grep 'NM_CONTROLLED=no'

Re: [vagrant-up] How to disable DNS nameservers from DHCP Vagrant's internal interface?

2016-02-12 Thread Alvaro Miranda Aguilera
Hello, eth0 use dhcp to get the IP, and dhcp provide the dns information. on my experience, is easier you use a shell provisioner script to override the dns settings and lets things go default. What's the os for the guest? with vagrant, you can have `run: "always"` to run the provisioner all

Re: [vagrant-up] HELP on configuration for a Vagrant server

2016-02-12 Thread Alvaro Miranda Aguilera
Hello, Couple of hinters, and sorry if these are too obvious. a. Each windows machine generate a unique system id, when you have the same box more than once, you will get duplicates id, this is fine when you don't have Active Directory. When you add a box to Active Directory, as similar to

Re: [vagrant-up] Conditionally add or remove storage controllers in Vagrant file.

2016-02-12 Thread Alvaro Miranda Aguilera
Host "Dismounting the Visual Studio ISO file..." > Dismount-DiskImage -ImagePath $iso > } > > Write-Host "Deleting the Visual Studio 2013 with Update 5 ISO file..." > $file = "C:/tmp/ > en_visual_studio_ultimate_2013_with_update_5_x86_dvd_6815896.iso"

Re: [vagrant-up] libruby errors when running kitchen create

2016-02-05 Thread Alvaro Miranda Aguilera
Hello, Can you send an email to support at hashicorp.com ? For the Vagrant part Attach a verbose output. VAGRANT_LOG=debug vagrant up 2>&1 | tee vagrant_up.log VAGRANT_LOG=debug vagrant destroy -f 2>&1 | tee vagrant_destroy.log The ssh not working, may be (or may be not) something in the

Re: [vagrant-up] can´t get it to work

2016-02-07 Thread Alvaro Miranda Aguilera
Hello, At this stage is failing to download the box. As you are in windows, probably is due a change in curl.exe Can you install 32 bit C++ redistributable package? Even if your OS is 64 bits, the 32 bits is needed. https://www.microsoft.com/en-us/download/details.aspx?id= Thanks Alvaro

Re: [vagrant-up] unclear on workflow between packer and vagrant

2016-02-05 Thread Alvaro Miranda Aguilera
On Sat, Feb 6, 2016 at 1:52 PM, wrote: > packer validate > packer build > vagrant init > vagrant up > vagrant ssh > examine results > vagrant destroy > correct/modify/enhance ks.cfg > repeat HEllo You need to create the vagrant file once, so you can do vagrant init -m

Re: [vagrant-up] The new box ubuntu/trusty64 and the security issues

2016-02-13 Thread Alvaro Miranda Aguilera
Hello. Since Vagrant 1.5+ vagrant can download boxes from atlas in the format from user/box, so think in the vagrant boxes hosted at atlas as an index or repository. >From there, for development work, you can say the boxes over there give you flexibility, agility, convenience, however you have

Re: [vagrant-up] Identical Environment: Docker containers in a custom Docker host

2016-01-28 Thread Alvaro Miranda Aguilera
On Fri, Jan 29, 2016 at 12:47 AM, Tomasz Majchrowski wrote: > > Now we would like to use the same "customer docker host" across all > environments (including Linux based one). Hello, yes is possible. have a look at this parameter:

Re: [vagrant-up] Cannot download Vagrant for windows

2016-01-26 Thread Alvaro Miranda Aguilera
hello i have just tested and the download is just fine can you open a broweser in incognito mode and try again? https://www.vagrantup.com/downloads.html If this works, one potential explanation will be on caching, So the next step will be clean cache of the browser. if still fails on incognito

Re: [vagrant-up] Create files programmatically during provision phase after "vagrant up --no-provision"

2016-01-27 Thread Alvaro Miranda Aguilera
hello, you need host -> vm or vm -> vm communication? if vm -> vm, have a look at Vagrant multi machine, you can set a fixed ip, and use that ip to create /etc/hosts updated ie: #agent box (1..2).each do |i| vm_name = "agent#{i}" config.vm.define vm_name do |agent|

Re: [vagrant-up] Vagrant not loading the right VM

2016-01-26 Thread Alvaro Miranda Aguilera
n 27, 2016 at 6:57 AM, Alfredo Nava <alfredo.nav...@gmail.com> wrote: > I am also trying to set this up but on my Ubuntu 14.04 desktop, and am > getting same issue. However mine just pauses while setting up SSH, and > never completes. > > > > On Monday, June 8, 2015 at 5:

Re: [vagrant-up] Vagrant can't use the requested machine because it is locked

2016-02-03 Thread Alvaro Miranda Aguilera
Check the VirtualBox gui if there is any VM in the GUI left, and in the media manager is there is any orphan disk. Be sure to be running Vagrant as your normal user, and not as Administrator. Alvaro. On Wed, Feb 3, 2016 at 8:46 PM, Rob Woerner wrote: > My apologies

Re: [vagrant-up] How to install a box with a packaged Vagrantfile?

2016-02-03 Thread Alvaro Miranda Aguilera
Hello, Can you try using vagrant package? z2-3:~ kikitux$ vagrant package -h Usage: vagrant package [options] [name] Options: --base NAME Name of a VM in virtualbox to package as a base box --output NAMEName of the file to output

Re: [vagrant-up] Conditionally add or remove storage controllers in Vagrant file.

2016-02-01 Thread Alvaro Miranda Aguilera
Hello Christopher. What you can do, is use the IDE controller for your iso, so you will now is always IDE. However, you may hit the same issue, depening on the OS where the box was created, it could be SATA Controller or SATA so maybe the ide would be IDE Controller vs IDE If the box is

Re: [vagrant-up] Running shell after first /vagrant mount

2016-02-23 Thread Alvaro Miranda Aguilera
gt; default: /vagrant* > > *==> default: will run npm install* > > *==> default: supervisor server.js* > > On Tuesday, 23 February 2016 01:06:48 UTC+1, Alvaro Miranda Aguilera wrote: >> >> Hello >> >> Can you unzip the attached, run `vagrant up` and share

Re: [vagrant-up] for login in to VM

2016-02-29 Thread Alvaro Miranda Aguilera
wrote: > Hi Alvaro, > > i changed my password using ssh command. > > for sharing purpose i have to login. > > so which command i have to use for login? > > thanks > smruti > > On Sat, Feb 27, 2016 at 6:41 AM, Alvaro Miranda Aguilera < > kiki...@gmail.com&g

Re: [vagrant-up] Packer makes the box, but installed nginx doesn't seem installed.

2016-02-29 Thread Alvaro Miranda Aguilera
Hello, You could email packer mailing list, and share a link to a github project with your packer template. In that way, people who use packer can comment on it. Thanks Alvaro. On Mon, Feb 29, 2016 at 10:13 PM, 'scott molinari' via Vagrant < vagrant-up@googlegroups.com> wrote: > I have a box

<    4   5   6   7   8   9   10   11   12   13   >