5

我可以从登录页面毫无问题地登录到 Cloud Foundry。但是当我尝试 cf login 时,我得到了:

C:\Users\pding>cf target api.cloudfoundry.com
Setting target to https://api.cloudfoundry.com... OK

C:\Users\pding>cf login
target: https://api.cloudfoundry.com

Email> ********* (my email address)
Password> ******** (my password)

Authenticating... FAILED

我错过了什么?

4

2 回答 2

3

面临同样的问题,我得到的解决方案是切换到vmc. (我在 Windows 64 位上并使用 ruby​​ 1.9.3-p327 x64 构建)

C:\Windows\system32>cf target api.cloudfoundry.com
Setting target to https://api.cloudfoundry.com... OK

C:\Windows\system32>cf login
target: https://api.cloudfoundry.com

Email> amol#####e@gmail.com

Password> ******

Authenticating... FAILED
Password> ******

Authenticating... FAILED
Password> ******

Authenticating... FAILED

在我切换到vmc

C:\Windows\system32>vmc target api.cloudfoundry.com
Setting target to https://api.cloudfoundry.com... OK

C:\Windows\system32>vmc login
target: https://api.cloudfoundry.com

Email> amol######e@gmail.com

Password> ******

Authenticating... OK

cf与 cloud_controller v1 不兼容,vmc仅支持 v1 系统...(来源cfvmc)快乐探索..

于 2013-05-28T11:50:33.123 回答
2

vmc是 Cloud Foundry v1 的客户端,我相信它将在 6 月 30 日关闭。要使用它,您需要运行:

vmc target api.cloudfoundry.com

cf是 Cloud Foundry v2 的客户端。Web 控制台位于https://console.run.pivotal.io/(您的 v1 凭据应该可以使用)。

要运行 cf 命令,您需要运行:

cf target api.run.pivotal.io

您的 v1 应用程序不会自动迁移到 v2。您必须手动执行此操作。有关更多信息,请参阅常见问题解答:http: //www.cloudfoundry.com/faq

于 2013-06-23T02:41:30.800 回答