0

我正在使用 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,回显页面的环境变量(在上面提到的单节点\多节点页面的底部)

关于我在这里做错了什么的任何想法?有什么建议么?

4

1 回答 1

1

您用于多节点设置的文档非常陈旧,而 Cloud Foundry 正处于快速开发阶段。

您可以在此处找到有关 vcap 的活跃对话: https ://groups.google.com/a/cloudfoundry.org/forum/?fromgroups#!forum/vcap-dev

如果您正在考虑使用 chef 进行多节点 cf 安装,建议您在此处使用 Andrea Campi 的脚本:https ://github.com/zephirworks - 请注意,这是一个独立项目。Cloud Foundry 团队正在从 dev_setup 转向 BOSH 安装。

于 2013-02-06T00:53:36.180 回答