I am using VMC 0.3.18 and I set up my environment like the one discussed here: http://support.cloudfoundry.com/entries/20407923-single-multi-node-vcap-deployment-using-dev-setup
Each VM VCAP status claims their services are running (i.e. vcap_dev status) but when ever I try to push an application that I know works (successfully tested it in a single-node environment), I receive a HTTP exception: RestClient Timeout. Here is what the line looks out when the application is pushed.
root@myHome:~/Ruby/Hello# vmc push hello
Would you like to deploy from the current directory? [Yn]: Y
Detected a Sinatra Application, is this correct? [Yn]: Y
Application Deployed URL [hello.vcap.me]: hello.vcap.me
Memory reservation (128M, 256M, 512M, 1G, 2G) [128M]: 128M
How many instances? [1]: 1
Bind existing services to 'hello'? [yN]: N
Create services to bind to 'hello'? [yN]: N
Would you like to save this configuration? [yN]: N
Creating Application: OK
Uploading Application:
Checking for available resources: OK
Packing application: OK
Uploading (0K): OK
Push Status: OK
Staging Application 'hello': .............................................HTTP exception: RestClient::RequestTimeout:Request Timeout
These application I have been attempting to load are simple hello.rb file http://docs.cloudfoundry.com/tools/vmc/installing-vmc.html#next-steps (scroll up to see the file) and env.rb, to echo the page's environment variable (on the bottom of the single-node\multi-node page mentioned above)
Any ideas on what I am doing wrong here? Any suggestions?