我在 AWS 实例上安装了 Kibana 和 Elasticsearch。Elasticsearch 似乎工作正常。但是,当我尝试使用 Kibana 仪表板执行某些操作(PUT 和 DELETE 请求)时,它给了我错误 501 (Not Implemented)
。它适用于 GET 请求。我使用本地系统访问 Kibana http://aws-ip:5601/
。下面是我得到的错误跟踪
Failed to load resource: the server responded with a status of 501 (Not Implemented)
commons.bundle.js?v=15104:38 Error: Not Implemented
at respond (kibana.bundle.js?v=15104:13)
at checkRespForFailure (kibana.bundle.js?v=15104:13)
at kibana.bundle.js?v=15104:1
at processQueue (commons.bundle.js?v=15104:38)
at commons.bundle.js?v=15104:38
at Scope.$eval (commons.bundle.js?v=15104:39)
at Scope.$digest (commons.bundle.js?v=15104:39)
at Scope.$apply (commons.bundle.js?v=15104:39)
at done (commons.bundle.js?v=15104:37)
at completeRequest (commons.bundle.js?v=15104:37)
(anonymous) @ commons.bundle.js?v=15104:38
此外,如果我从 Chrome 开发人员工具的网络选项卡复制请求有效负载并使用来自 AWS 终端的 CURL 执行相同的请求(PUT/DELETE),它工作正常。
请帮忙!!!
提前致谢 。