我正在使用 VMC 0.3.18 并设置我的环境,就像这里讨论的那样:http: //support.cloudfoundry.com/entries/20407923-single-multi-node-vcap-deployment-using-dev-setup
每个 VM VCAP 状态都声称它们的服务正在运行(即 vcap_dev 状态),但是当我尝试推送一个我知道有效的应用程序(在单节点环境中成功测试它)时,我收到一个 HTTP 异常:RestClient Timeout。这是推送应用程序时该行的外观。
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
我一直在尝试加载的这些应用程序是简单的 hello.rb 文件http://docs.cloudfoundry.com/tools/vmc/installing-vmc.html#next-steps(向上滚动查看文件)和 env.rb,回显页面的环境变量(在上面提到的单节点\多节点页面的底部)
关于我在这里做错了什么的任何想法?有什么建议么?