Cornelia Davis
Cornelia Davis

Reputation: 221

Setting vcap.me entries in hosts file

An answer with a question...

I did a single node cloud foundry install that I am running in Workstation and I am connecting to that machine from anther VM. I put the following entries in my hosts file on that second VM:

192.168.0.111  api.vcap.me
192.168.0.111  vcap.me

A

vmc target api.vcap.me 

worked fine but when I did a

vmc register

and entered my email and password (+verify) it appeared to create the user but then failed on login with the following error:

Problem with login to 'http://api.vcap.me', target refused connection 
(Connection refused - connect(2)), try again or register for an account.

running

vmc login

resulted in the same error. Running

vmc -trace login 

showed that uaa.vcap.me was being contacted so I added that to my hosts file and bingo - it worked.

Upvotes: 2

Views: 1074

Answers (1)

Ali Moghadam
Ali Moghadam

Reputation: 1270

login uses uaa so you would need to also add uaa url into your hosts file.

192.168.0.113       uaa.vcap.me

Upvotes: 1

Related Questions