如何访问 Pivotal Spring 云服务配置服务器的加密端点
How to access encryption endpoint for Pivotal Spring Cloud Service config server
我正在使用 Pivotal Cloud Foundry 和 Spring Cloud Services 1.0.0。我想知道在我们的 Config Server 服务实例上访问 /encryption 端点的正确方法是什么?我在尝试访问端点时收到 OAuth "Full authentication required" 错误,但我不确定应该使用哪些凭据进行身份验证我什至不知道是否设置了加密端点,文档中没有任何建议可用或不可用。
您需要在启动期间查看日志以捕获生成的密码,或者您需要在启动配置中提供密码。
将此添加到您的 bootstrap.yml
security:
user:
password: yourPasswordHere
或将此添加到您的 bootstrap.properties:
security.user.password: yourPasswordHere
您可以使用 user/yourPasswordHere 登录以在您的应用程序部署后进行身份验证。
我正在使用 Pivotal Cloud Foundry 和 Spring Cloud Services 1.0.0。我想知道在我们的 Config Server 服务实例上访问 /encryption 端点的正确方法是什么?我在尝试访问端点时收到 OAuth "Full authentication required" 错误,但我不确定应该使用哪些凭据进行身份验证我什至不知道是否设置了加密端点,文档中没有任何建议可用或不可用。
您需要在启动期间查看日志以捕获生成的密码,或者您需要在启动配置中提供密码。
将此添加到您的 bootstrap.yml
security:
user:
password: yourPasswordHere
或将此添加到您的 bootstrap.properties:
security.user.password: yourPasswordHere
您可以使用 user/yourPasswordHere 登录以在您的应用程序部署后进行身份验证。