简体   繁体   English

Minio STS:提供程序 jwt 不存在

[英]Minio STS: provider jwt doesn't exist

I'm trying to call minIO's AssumeRoleWithClientGrants, using postman I request (POST)我正在尝试调用 minIO 的 AssumeRoleWithClientGrants,使用 postman 我请求(POST)

http://localhost:9000/?Action=AssumeRoleWithClientGrants&DurationSeconds=10000&Token=__SOME_TKN____&Version=2011-06-15

solved解决了

For anyone who's trying to fix this: this error means that minio is not being able to read your .../.well-known/openid-configuration url*.对于任何试图解决此问题的人:此错误意味着 minio 无法读取您的.../.well-known/openid-configuration url*。

  • (set through MINIO_IDENTITY_OPENID_CONFIG_URL or identity_openid > config_url in the json cnofig file) (通过 json cnofig 文件中的 MINIO_IDENTITY_OPENID_CONFIG_URL 或 identity_openid > config_url 设置)

But I'm getting this response:但我得到了这样的回应:

<?xml version="1.0" encoding="UTF-8"?>
<ErrorResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
    <Error>
        <Type></Type>
        <Code>InvalidParameterValue</Code>
        <Message>provider jwt doesn't exist</Message>
    </Error>
    <RequestId>163E438F6C8286CC</RequestId>
</ErrorResponse>

I also ran this python example , and when I click on authenticate and then on approve once --WSO2-- it redirects me to an error page that says我还运行了这个 python 示例,当我单击身份验证然后单击批准一次--WSO2--它会将我重定向到一个错误页面,上面写着

botocore.exceptions.ClientError: An error occurred (InvalidParameterValue) when calling the AssumeRoleWithWebIdentity operation: provider jwt doesn't exist

Any help would be much appreciated,任何帮助将非常感激,

I got the exact same error as yours in my minio which deployed in Azure AKS.我在部署在 Azure AKS 中的 minio 中遇到了与您完全相同的错误。 The issue was fixed by restarting the minio pod.该问题已通过重新启动 minio pod 得到解决。 (Looks like the minio pod was misfunctional after the AKS cluster nodes were rebooted due to the Azure DNS issue https://status.azure.com/en-ca/status ) (Looks like the minio pod was misfunctional after the AKS cluster nodes were rebooted due to the Azure DNS issue https://status.azure.com/en-ca/status )

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 当对象不存在时,headObject 从不抛出错误 - headObject never throws an error when object doesn't exist DynamoDB GSIs 查询找不到 GSI3 和 GSI4,尽管它们存在 - DynamoDB GSIs query doesn't find GSI3 & GSI4 despite they exist Firebase 身份验证:如何知道 Google 或 Facebook 提供商的帐户是否已经存在? - Firebase Authentication: How to know if account with Google or Facebook provider already exist? MinIO 中桶的最佳实践 - Best practice for bucket in MinIO GCP 从 googleapis.com/robot/v1/metadata/x509/my-service@**-**.iam.gserviceaccount.com 签名的 JWT 孩子不存在(消失),Z1D3ZFADBD9150349C 无效。 - GCP signed JWT kid does not exist (disappeared) from googleapis.com/robot/v1/metadata/x509/my-service@**-**.iam.gserviceaccount.com, JWT is invalid AWS 代入角色 STS - AWS Assume Role STS 生命周期规则无法使用 MinIO 服务 - Lifecycle rule not working using MinIO service 使用 Minio 和 nginx 通过临时 url 下载文件 - Download file by temp url using Minio and nginx 如何将 Minio 连接添加到 Airflow 连接? - How to add a Minio connection to Airflow connections? Kubenertes VerticalPodAutoscaler 无法扩展 - Kubenertes VerticalPodAutoscaler doesn't scale
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM