centos7.2 elk7.5集群搭建配置

1.下载地址

中文社区下载地址:es中文社区下载中心

2.修改系统默认配置

可以参考我另一篇博客:
centos7 elasticsearch 安装系统默认配置修改

3.es 集群安装配置

目标服务器分别是192.168.50.15/16/17

# ---------------------------------- Cluster -----------------------------------
#
# Use a descriptive name for your cluster:
#
cluster.name: my-es-cluster
#
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#
node.name: node-16
#
# Add custom attributes to the node:
#
#node.attr.rack: r1
#
# ----------------------------------- Paths ------------------------------------
#
# Path to directory where to store the data (separate multiple locations by comma):
#
path.data: data/data
#
# Path to log files:
#
path.logs: data/logs
#
# ---------------------------------- Network -----------------------------------
#
# Set the bind address to a specific IP (IPv4 or IPv6):
#
network.host: 0.0.0.0
#
# Set a custom port for HTTP:
#
http.port: 9200
#
# For more information, consult the network module documentation.
#
# --------------------------------- Discovery ----------------------------------
#
# Pass an initial list of hosts to perform discovery when this node is started:
# The default list of hosts is ["127.0.0.1", "[::1]"]
#
discovery.seed_hosts: ["192.168.50.15", "192.168.50.16","192.168.50.17"]
#
# Bootstrap the cluster using an initial set of master-eligible nodes:
#
cluster.initial_master_nodes: ["node-15", "node-16","node-17"]
#
# For more information, consult the discovery and cluster formation module documentation.
#
# ---------------------------------- Gateway -----------------------------------
#
# Block initial recovery after a full cluster restart until N nodes are started:
#
gateway.recover_after_nodes: 2
#
# For more information, consult the gateway module documentation.
#
# ---------------------------------- cors-----------------------------------
http.cors.enabled: true
http.cors.allow-origin: "*"

注意事项:

  • 集群名称必须一致 cluster.name
  • 节点名称不同

然后使用非root账户启动即可 ./bin/elasticsearch -d

4.kebana安装配置

参考配置

# Kibana is served by a back end server. This setting specifies the port to use.
server.port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "0.0.0.0"
server.host: "192.168.50.17"
# The URLs of the Elasticsearch instances to use for all your queries.
elasticsearch.hosts: ["http://192.168.50.15:9200","http://192.168.50.16:9200","http://192.168.50.17:9200"]
# Supported languages are the following: English - en , by default , Chinese - zh-CN .
i18n.locale: "zh-CN"

其它配置根据具体情况进行选择

同样使用非root账户启动即可 ./bin/kibana &

5.Logstash安装配置

Logstash主要根据使用场景进行不同的配置

例如控制台输入

input {
 #控制台输入
  stdin{

   }
}

output {
 #es导入
  elasticsearch {
    hosts => ["http://192.168.50.17:9200"]
    index => "test-%{+YYYY.MM.dd}"
    #user => "elastic"
    #password => "changeme"
  }
 #控制台输出
  stdout { codec => rubydebug }
}

启动logstash ./bin/logstash -f 配置文件/文件夹

配置kafka输入
input {
   kafka{
    bootstrap_servers =>["192.168.50.7:9092"]
    group_id => "logstash_grup"
    auto_offset_reset => "latest"
    consumer_threads => 5
    decorate_events => true
    topics => ["kafka_logstash"]
	codec => json {
        charset => "UTF-8"
    }
  }
}



output {
  elasticsearch {
    hosts => ["192.168.50.21:9200","192.168.50.22:9200","192.168.50.23:9200"]
    index => "%{[tags]}-%{+YYYY.MM.dd}"
  }
}

这样就吧elk搭建起来了,下篇文章讲介绍项目中的实际使用

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值