Elasticsearch簡單配置

Elasticsearch配置詳細和詳細描述如下

http://rockelixir.iteye.com/blog/1883373

 

在此,對Elasticsearch進行如下簡單配置

cluster.name: es_cluster

node.name: "es1" 

node.master: true 

node.data: true

network.host: 192.168.81.128

# network.bind_host: 192.168.81.128

# network.publish_host: 192.168.81.128

 

查看監聽端口

[root@test ~]# netstat -tupln

Active Internet connections (only servers)

Proto Recv-Q Send-Q Local Address               Foreign Address    State   PID/Program name

tcp        0      0 0.0.0.0:21                  0.0.0.0:*          LISTEN  15042/vsftpd

tcp        0      0 0.0.0.0:22                  0.0.0.0:*          LISTEN  1422/sshd

tcp        0      0 127.0.0.1:25                0.0.0.0:*          LISTEN  1501/master

tcp        0      0 ::ffff:192.168.81.128:9200  :::*               LISTEN  15622/java

tcp        0      0 ::ffff:192.168.81.128:9300  :::*               LISTEN  15622/java

tcp        0      0 :::22                       :::*               LISTEN  1422/sshd

tcp        0      0 ::1:25                      :::*               LISTEN  1501/master

[root@test ~]#

 

簡單測試

[root@test ~]# curl http://192.168.81.128:9200

{

  "name" : "es1",

  "cluster_name" : "es_cluster",

  "version" : {

    "number" : "2.3.4",

    "build_hash" : "e455fd0c13dceca8dbbdbb1665d068ae55dabe3f",

    "build_timestamp" : "2016-06-30T11:24:31Z",

    "build_snapshot" : false,

    "lucene_version" : "5.5.0"

  },

  "tagline" : "You Know, for Search"

}

[root@test ~]#

 

Over!!


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章