在服务器上跑es时,常常需要在开发环境下进行连接。
为了使得其他机器可以访问es,需要设置elasticsearch.yml文件。
设置如下:
network.host: 0.0.0.0
http.port: 9200
transport.host: localhost
然后就可以输入ip地址和端口号,从浏览器看到如下信息。即可使用。
{ "name" : "afZbR0D", "cluster_name" : "elasticsearch", "cluster_uuid" : "d9V6lI8OQhCuGInMn-0_OA", "version" : { "number" : "5.5.1", "build_hash" : "19c13d0", "build_date" : "2017-07-18T20:44:24.823Z", "build_snapshot" : false, "lucene_version" : "6.6.0" }, "tagline" : "You Know, for Search" }
0 条评论