如何访问Pivotal Spring Cloud Service配置服务器的加密端点

时间:2015-11-20 19:21:31

标签: cloudfoundry spring-cloud pivotal-web-services pivotal-cloud-foundry

我正在使用Pivotal Cloud Foundry和Spring Cloud Services 1.0.0。我想知道在我们的Config Server服务实例上访问/加密端点的正确方法是什么?尝试访问端点时,我得到OAuth“需要完全身份验证”错误但我不确定我应该使用哪些凭据进行身份验证我甚至不知道加密端点是否已设置,文档中没有任何内容可以建议是或不可用。

1 个答案:

答案 0 :(得分:0)

您需要在启动期间查看日志以捕获生成的密码,或者您需要在启动配置中提供密码。

将此添加到您的bootstrap.yml

security:
  user:
    password: yourPasswordHere

或者将其添加到bootstrap.properties:

security.user.password: yourPasswordHere

一旦部署了应用程序,您就可以使用user / yourPasswordHere登录进行身份验证。