4

我在 Cloud Foundry 中创建了一个 uaac 服务实例,并将它与我的一个应用程序相关联。现在,当我尝试将我的 CLI 定位到 uaac 实例时,我收到以下错误,

$ uaac target <uaac URL> 
failed to access <uaac URL>: Invalid SSL Cert for <uaac URL>/login. Use '--skip-ssl-validation' to continue with an insecure target

我已根据消息添加了选项,

 $ uaac target <uaac URL> --skip-ssl-validation

但我又得到了同样的错误,

failed to access <uaac URL>: Invalid SSL Cert for <uaac URL>/login. Use '--skip-ssl-validation' to continue with an insecure target

我不确定为什么不考虑该选项,即使在提到该选项后我再次遇到相同的错误。

4

2 回答 2

1

在撰写本文时,这似乎是一个已知问题:

在 github 评论上,有人通过配置文件中的设置(~/.uaac.yml默认情况下)建议了一种解决方法:

https://127.0.0.1:8580:
  skip_ssl_validation: true
  ca_cert: 

在 8580 获取本地 uaa。

这仅适用于我的uaac target命令,但显然不适用于uaac token命令

于 2017-07-25T06:05:38.973 回答
1

我的解决方案是在我的 uaa Ip 之前使用 http 前缀

uaac target http://10.81.4.236:8080
于 2018-05-22T14:00:32.153 回答