elasticsearch.js 客户端连接被拒绝:无法识别 Access-Control-Allow-Origin?
elasticsearch.js client connection refused: Access-Control-Allow-Origin not recognized?
我一直在尝试使用 elasticsearch.jquery.min.js ping 本地 运行ning elasticsearch,但每次都收到 "no living connection" 错误。
预计到达时间:在 Chrome 中,我看到看起来很低的水平 "Connection Refused"。我在 MacOS X 上开发,我的浏览器通过 http://localhost/~myuserid/SiteName/
指向该页面。当我访问 localhost:9200
时,这显然属于跨域 CORS 要求。
我在 Chrome 控制台中看到以下错误:
XMLHttpRequest cannot load http://localhost:9200/?hello=elasticsearch!.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost' is therefore not allowed access.
根据 http://enable-cors.org/server_apache.html 我已将以下内容添加到 /etc/apache2/httpd.conf:
<Directory />
Header set Access-Control-Allow-Origin "localhost:9200"
AllowOverride none
Require all denied
</Directory>
和运行
$ sudo apachectl -t
$ sudo apachectl -k graceful
但错误仍然存在。还有其他我忽略的设置吗?
我是 elasticsearch.js 的菜鸟。我需要在 elasticsearch 端做些什么来允许来自浏览器的客户端连接,还是什么?
我正在尝试 ping the book:
var client = new $.es.Client({
hosts: 'localhost:9200'
});
client.ping(
{
requestTimeout: Infinity,
// undocumented params are appended to the query string
hello: "elasticsearch!"
},
function (error) {
if (error) {
console.error('elasticsearch cluster is down!');
console.error(error);
} else {
console.log('All is well');
}
}
);
但我收到以下错误:
"WARNING: 2015-10-10T07:00:16Z" elasticsearch.jquery.min.js:14:10575
Unable to revive connection: http://localhost:9200/
"WARNING: 2015-10-10T07:00:16Z" elasticsearch.jquery.min.js:14:10575
No living connections
我可以在命令行上使用 curl 进行连接,拉取和插入数据等:
$ curl "localhost:9200/_cat/indices?v"
health status index pri rep docs.count docs.deleted store.size pri.store.size
green open fuddle 1 0 3 0 12.9kb 12.9kb
green open faddle 1 0 0 0 144b 144b
ETA 附加诊断。 Google Chrome 显示失败尝试的以下网络跟踪。在 HTTP 层,响应看起来正在发生。
General
Remote Address:[::1]:9200
Request URL:http://localhost:9200/?hello=elasticsearch!
Request Method:HEAD
Status Code:200 OK
Response Headers
Content-Length:0
Content-Type:text/plain; charset=UTF-8
Request Headers
Accept:text/plain, */*; q=0.01
Accept-Encoding:gzip, deflate, sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:0
Host:localhost:9200
Origin:http://localhost
Referer:http://localhost/~browsc3/Opticon/
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36
Query String Parameters
view URL encoded
hello:elasticsearch!
wget 中的相同请求:
wget http://localhost:9200/?hello=elasticsearch!
--2015-10-10 09:47:13-- http://localhost:9200/?hello=elasticsearch!
Resolving localhost... ::1, 127.0.0.1
Connecting to localhost|::1|:9200... connected.
HTTP request sent, awaiting response... 200 OK
Length: 342 [application/json]
Saving to: 'index.html?hello=elasticsearch!'
index.html?hello=elastics 100%[=====================================>] 342 --.-KB/s in 0s
2015-10-10 09:47:13 (65.2 MB/s) - 'index.html?hello=elasticsearch!' saved [342/342]
我真的不知道该何去何从。我在 teh googlz 上看到很多关于错误的引用,但 none 的情况似乎非常相似。感觉我只是遇到了一些配置错误,但我找不到任何可以表明那是什么的东西。
嗯,这是一个艰难的过程。
这是修复问题的方法:
根据 http://enable-cors.org/server_apache.html,在 /etc/apache2/httpd.conf
中,配置 Access-Control-Allow-Origin:
<Directory />
# Add the following line to enable CORS to connect to local elasticsearch.
Header set Access-Control-Allow-Origin "localhost:9200"
AllowOverride none
Require all denied
</Directory>
根据 https://jsbroadcast.com/elastic-search-cors/,在 elasticsearch-1.7.0/config/elasticsearch.yml
中添加:
http.cors.enabled : true //
http.cors.allow-origin: "/.*/"
http.cors.allow-methods : OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers : "X-Requested-With,X-Auth-Token,Content-Type, Content-Length, Authorization"
我现在可以 运行 client.ping
调用而不会出现任何错误。
放入你的elasticsearch.yml配置文件,位于elasticsearch-xxx\config\elasticsearch.yml,下面一行
http.cors.enabled: true
并在您的互联网导航器中启用 cors。
重新启动 elasticsearch 服务器并重试。
只需将此添加到 elasticsearch.yml
即可。
http.cors.enabled: true
http.cors.allow-origin: "/.*/"
http.cors.allow-methods: OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers: "X-Requested-With,X-Auth-Token,Content-Type, Content-Length, Authorization"
您不需要向 Apache 添加任何内容。
我一直在尝试使用 elasticsearch.jquery.min.js ping 本地 运行ning elasticsearch,但每次都收到 "no living connection" 错误。
预计到达时间:在 Chrome 中,我看到看起来很低的水平 "Connection Refused"。我在 MacOS X 上开发,我的浏览器通过 http://localhost/~myuserid/SiteName/
指向该页面。当我访问 localhost:9200
时,这显然属于跨域 CORS 要求。
我在 Chrome 控制台中看到以下错误:
XMLHttpRequest cannot load http://localhost:9200/?hello=elasticsearch!.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost' is therefore not allowed access.
根据 http://enable-cors.org/server_apache.html 我已将以下内容添加到 /etc/apache2/httpd.conf:
<Directory />
Header set Access-Control-Allow-Origin "localhost:9200"
AllowOverride none
Require all denied
</Directory>
和运行
$ sudo apachectl -t
$ sudo apachectl -k graceful
但错误仍然存在。还有其他我忽略的设置吗?
我是 elasticsearch.js 的菜鸟。我需要在 elasticsearch 端做些什么来允许来自浏览器的客户端连接,还是什么?
我正在尝试 ping the book:
var client = new $.es.Client({
hosts: 'localhost:9200'
});
client.ping(
{
requestTimeout: Infinity,
// undocumented params are appended to the query string
hello: "elasticsearch!"
},
function (error) {
if (error) {
console.error('elasticsearch cluster is down!');
console.error(error);
} else {
console.log('All is well');
}
}
);
但我收到以下错误:
"WARNING: 2015-10-10T07:00:16Z" elasticsearch.jquery.min.js:14:10575
Unable to revive connection: http://localhost:9200/
"WARNING: 2015-10-10T07:00:16Z" elasticsearch.jquery.min.js:14:10575
No living connections
我可以在命令行上使用 curl 进行连接,拉取和插入数据等:
$ curl "localhost:9200/_cat/indices?v"
health status index pri rep docs.count docs.deleted store.size pri.store.size
green open fuddle 1 0 3 0 12.9kb 12.9kb
green open faddle 1 0 0 0 144b 144b
ETA 附加诊断。 Google Chrome 显示失败尝试的以下网络跟踪。在 HTTP 层,响应看起来正在发生。
General
Remote Address:[::1]:9200
Request URL:http://localhost:9200/?hello=elasticsearch!
Request Method:HEAD
Status Code:200 OK
Response Headers
Content-Length:0
Content-Type:text/plain; charset=UTF-8
Request Headers
Accept:text/plain, */*; q=0.01
Accept-Encoding:gzip, deflate, sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:0
Host:localhost:9200
Origin:http://localhost
Referer:http://localhost/~browsc3/Opticon/
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36
Query String Parameters
view URL encoded
hello:elasticsearch!
wget 中的相同请求:
wget http://localhost:9200/?hello=elasticsearch!
--2015-10-10 09:47:13-- http://localhost:9200/?hello=elasticsearch!
Resolving localhost... ::1, 127.0.0.1
Connecting to localhost|::1|:9200... connected.
HTTP request sent, awaiting response... 200 OK
Length: 342 [application/json]
Saving to: 'index.html?hello=elasticsearch!'
index.html?hello=elastics 100%[=====================================>] 342 --.-KB/s in 0s
2015-10-10 09:47:13 (65.2 MB/s) - 'index.html?hello=elasticsearch!' saved [342/342]
我真的不知道该何去何从。我在 teh googlz 上看到很多关于错误的引用,但 none 的情况似乎非常相似。感觉我只是遇到了一些配置错误,但我找不到任何可以表明那是什么的东西。
嗯,这是一个艰难的过程。
这是修复问题的方法:
根据 http://enable-cors.org/server_apache.html,在 /etc/apache2/httpd.conf
中,配置 Access-Control-Allow-Origin:
<Directory />
# Add the following line to enable CORS to connect to local elasticsearch.
Header set Access-Control-Allow-Origin "localhost:9200"
AllowOverride none
Require all denied
</Directory>
根据 https://jsbroadcast.com/elastic-search-cors/,在 elasticsearch-1.7.0/config/elasticsearch.yml
中添加:
http.cors.enabled : true //
http.cors.allow-origin: "/.*/"
http.cors.allow-methods : OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers : "X-Requested-With,X-Auth-Token,Content-Type, Content-Length, Authorization"
我现在可以 运行 client.ping
调用而不会出现任何错误。
放入你的elasticsearch.yml配置文件,位于elasticsearch-xxx\config\elasticsearch.yml,下面一行
http.cors.enabled: true
并在您的互联网导航器中启用 cors。 重新启动 elasticsearch 服务器并重试。
只需将此添加到 elasticsearch.yml
即可。
http.cors.enabled: true
http.cors.allow-origin: "/.*/"
http.cors.allow-methods: OPTIONS, HEAD, GET, POST, PUT, DELETE
http.cors.allow-headers: "X-Requested-With,X-Auth-Token,Content-Type, Content-Length, Authorization"
您不需要向 Apache 添加任何内容。