wlyyb521 发表于 2019-1-29 06:41:11

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

查看监听端口
  # netstat -tupln
  ActiveInternet connections (only servers)
  Proto Recv-QSend-Q Local Address            Foreign Address    State   PID/Program name
  tcp      0   0 0.0.0.0:21               0.0.0.0:*          LISTEN15042/vsftpd
  tcp      0   0 0.0.0.0:22               0.0.0.0:*          LISTEN1422/sshd
  tcp      0   0 127.0.0.1:25               0.0.0.0:*          LISTEN1501/master
  tcp      0   0 ::ffff:192.168.81.128:9200 :::*               LISTEN15622/java
  tcp      0   0 ::ffff:192.168.81.128:9300 :::*               LISTEN15622/java
  tcp      0   0 :::22                      :::*               LISTEN1422/sshd
  tcp      0   0 ::1:25                     :::*               LISTEN1501/master
  #

简单测试
  # 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, forSearch"
  }
  #

Over!!
  




页: [1]
查看完整版本: Elasticsearch简单配置