How to Install Aerospike on Windows

HI there,

can some one help me with this,

I am trying to install aerospike on windows, I have installed virtual box and vagrant, following the steps given in http://www.aerospike.com/docs/operations/install/vagrant/win/ but when i execute - vagrant up, it throws the below error, seems it is not able to find the erospike OS image in the vagrant box listing,

error is:

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'aerospike/centos-6.5' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
The box 'aerospike/centos-6.5' could not be found or
could not be accessed in the remote catalog. If this is a private
box on HashiCorp's Atlas, 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://atlas.hashicorp.com/aerospike/centos-6.5"]
Error: Could not resolve host: (nil); Host not found, try again

Possibly a firewall or proxy issue on Windows.

Which version of windows and virtualbox are you using?

Please see:

Are you able to get any other image from Atlas?

Could you try https://atlas.hashicorp.com/ubuntu/boxes/trusty64

Hi Lucien,

am using WIN7 , all firewall profiles are off, anyways let me try the other one which you gave as a confirmation,

thanks

Hi,

I could successfully add / install aerospike box, seems there is some issue with proxy server,

thanks for your support.

Only other thing I wanted to check is, am not aware of the credentials to login to the VM separately, is it not possible ? not allowed ? where I can i find some information around this.

thanks

You should be able to ssh to the VM directly by using the command

vagrant ssh

or you can also ssh directly via the expose ssh port:

Run vagrant up

and use info to ssh

default: SSH address: 192.168.20.194:22

default: SSH username: vagrant

default: SSH auth method: private key

In above vagrant up output, you can ssh to vm by running

ssh -p 22 vagrant@192.168.20.194

and use the default password vagrant

thanks that helped and works