Hello All,

I'm totally new to Vagrant and trying to set up a vagrant box on my local 
mac but I keep getting the below error when I try to up the vagrant

/me/ansible>vagrant up
Bringing machine 'web' up with 'virtualbox' provider...
Bringing machine 'db' up with 'virtualbox' provider...
==> web: Box 'nrel/CentOS-6.5-x86_64' could not be found. Attempting to 
find and install...
    web: Box Provider: virtualbox
    web: Box Version: >= 0
The box 'nrel/CentOS-6.5-x86_64' could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp's Vagrant Cloud, please verify you're logged in via
`vagrant login`. Also, please double-check the name. The expanded
URL and error message are shown below:

URL: ["https://vagrantcloud.com/nrel/CentOS-6.5-x86_64";]
Error: Unsupported proxy 'https://connsvr.abcdcom:8080', libcurl is built 
without the HTTPS-proxy support.

Below is my Vagrant file 

# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.

box_url = 
"http://repo.va2.b2c.nike.com/vagrant/download/rhel-7-x86_64-core.json";

Vagrant.configure("2") do |config|

config.vm.box_download_insecure = true
 config.vm.define "acs" do |acs|
 acs.vm.box = "ubuntu/trusty64"
 end

  config.vm.define "web" do |web|
    web.vm.box = "nrel/CentOS-6.5-x86_64"
    web.vm.hostname = "web"
    web.vm.network "private_network", ip: "192.168.33.20"
    web.vm.network "forwarded_port", guest: 80, host: 8080
  end

  config.vm.define "db" do |db|
    db.vm.box = "nrel/CentOS-6.5-x86_64"
    db.vm.hostname = "db"
    db.vm.network "private_network", ip: "192.168.33.30"
  end
end


I was following the documentation on vagrantcloud.com . Any help would be 
highly appreciated. 

Raj

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/cae8edf0-a546-4528-a15d-a1910d55a8bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to