时间 : 20-04-09 栏目 : 数据库 作者 : 冰镇宝贝321 评论 : 0 点击 : 1,378 次
问题描述
今天在windows上使用head插件连接elasticsearch,老是连不上,换了好几个端口都不行。
打开chrome控制台,发现一大堆报错:
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:9100' is therefore not allowed access.
明显是跨域出了问题。
解决方法
在elasticsearch.yml里面添加如下代码:
#开启跨域访问支持,默认为false http.cors.enabled: true #跨域访问允许的域名地址,(允许所有域名)以上使用正则 http.cors.allow-origin: /.*/
除非注明,文章均为( 冰镇宝贝321 )原创,转载请保留链接: https://bkqv5.com/archives/465.html