英文:
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
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!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论