Amazon MSK:加载连接器时出错。API 响应:网络故障

huangapple go评论66阅读模式
英文:

Amazon MSK: Error loading connectors. API response: Network Failure

问题

我尝试添加AWS连接器,但是当我打开Amazon MSK -> MSK Connect -> 连接器页面时出现了以下错误:

加载连接器时出错

由于网络故障,目前无法完成此操作。有关更多信息和问题解决方法,请参阅 AWS管理控制台指南中的故障排除。如果问题仍然存在,请联系AWS客户支持。

API响应:网络故障

并且我具有AmazonMSKFullAccess访问权限。

有什么想法吗?谢谢!

英文:

I try to add AWS Connectors, however I got this error when I open the Amazon MSK -> MSK Connect -> Connectors page:

> Error loading connectors
>
> This operation cannot be completed at this time due to a network
> failure. For more information and in order to mitigate the issue, see
> Troubleshooting in the AWS Management Console guide. If the problem
> persists, contact AWS customer support.
>
> API response: Network Failure

Amazon MSK:加载连接器时出错。API 响应:网络故障

And I have AmazonMSKFullAccess access.

Any idea? Thanks!

答案1

得分: 1

网络故障错误信息误导性,并且AmazonMSKFullAccess权限不足。

在将以下内容添加到权限策略后:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "kafkaconnect:*",
            "Resource": "*"
        }
    ]
}

并将其授予我的帐户后,错误消失了。希望能对您有所帮助!

英文:

The network failure error is misleading, and AmazonMSKFullAccess is not enough.

After adding this to permissions policy:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "kafkaconnect:*",
            "Resource": "*"
        }
    ]
}

and grant to my account. The error is gone. Hope it helps!

huangapple
  • 本文由 发表于 2023年6月6日 12:03:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/76411380.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定