ELK6.x_Kafka 安裝配置文檔

1. 環境描述

1.1.   環境拓撲

 

 

 

 

如上圖所示:Kafka爲3節點集羣負責提供消息隊列,ES爲3節點集羣。日誌經過logstash或者filebeat傳送至Kafka集羣,再經過logstash發送至ES集羣,最終經過kibana展現出來。(固然client也能夠直接將日誌發送至ES)java

1.2.   基礎配置描述

操做系統:CentOS Linux release 7.5.1804 (Core)node

系統安裝:Minimal Install (Development Tools)linux

Firewalld:stopwebpack

Selinux:disabledgit

軟件包位置:/rootweb

軟件安裝路徑爲:/optredis

數據目錄爲:/dataapache

1.3.   軟件包準備

jdk-8u131-linux-x64.tar.gzjson

zookeeper-3.4.14.tar.gzbootstrap

kafka_2.12-2.3.0.tgz

elasticsearch-6.3.2.tar.gz

logstash-6.3.2.tar.gz

filebeat-6.3.2-linux-x86_64.tar.gz

kibana-6.3.2-linux-x86_64.tar.gz

1.4.   角色描述

ES採用的是三節點部署;

Kafka採用的是三節點部署;

Logstash和kibana爲單獨部署;

角色

IP

Hostname

kafka/zookeeper

192.168.222.211

kafka1

kafka/zookeeper

192.168.222.212

kafka2

kafka/zookeeper

192.168.222.213

kafka3

elasticsearch

192.168.222.214

esnode1

elasticsearch

192.168.222.215

esnode2

elasticsearch

192.168.222.216

esnode3

logstash/filebeat

192.168.222.217

logstash1

kibana

192.168.222.218

kibana1

2. 環境準備

2.1.   基礎配置配置

根據環境描述修改配置主機ip

 

修改hostname

hostnamectl set-hostname esnodeX

 

修改hosts配置

vi /etc/hosts

192.168.222.211 kafka1

192.168.222.212 kafka2

192.168.222.213 kafka3

192.168.222.214 esnode1

192.168.222.215 esnode2

192.168.222.216 esnode3

192.168.222.217 logstash1

192.168.222.218 kibana1

2.2.   修改系統配置

須要在ES節點上配置便可

vi /etc/security/limits.conf

在末尾加入

* soft core 102400

* hard core 102400

* hard nofile 655360

* soft nofile  655360

* hard nproc  32768

* soft nproc  32768

* soft memlock unlimited

* hard memlock unlimited

 

vi /etc/security/limits.d/90-nproc.conf(Linux7爲20-nproc.conf)

在末尾加入

*          soft    nproc     4096

root       soft    nproc     unlimited

 

調整虛擬內存&最大併發鏈接

vi /etc/sysctl.conf

在末尾加入

vm.max_map_count = 655360

vm.swappiness = 0

修改完成後sysctl  -p使配置生效

 

2.3.   安裝jdk

在全部節點安裝jdk

mkdir /usr/local/java

cd /root/

tar zxf jdk-8u131-linux-x64.tar.gz -C /usr/local/java/

 

確認java版本

ls /usr/local/java/

jdk1.8.0_131

 

vi /etc/profile

...

export JAVA_HOME=/usr/local/java/jdk1.8.0_131/

export PATH=$PATH:$JAVA_HOME/bin

 

source /etc/profile

java -version

java version "1.8.0_131"

Java(TM) SE Runtime Environment (build 1.8.0_131-b11)

Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

 

3. 安裝配置kafka集羣

因爲zookeeper集羣要求節點數>=3,因此安裝kafka必需要3臺以上。

3.1.   安裝配置zookeeper

在kafka一、kafka二、kafka3節點上操做。

3.1.1. 建立zookeeper數據目錄

mkdir -p /data/zookeeper

3.1.2. 解壓安裝zookeeper

cd /root/

tar zxf zookeeper-3.4.14.tar.gz -C /opt/

cd /opt/zookeeper-3.4.14/conf/

3.1.3. 配置zookeeper

cp zoo_sample.cfg zoo.cfg

vi zoo.cfg

# 修改dataDir配置、添加server信息

dataDir=/data/zookeeper

server.1=kafka1:2888:3888

server.2=kafka2:2888:3888

server.3=kafka3:2888:3888

tickTime : 這個時間是做爲 Zookeeper 服務器之間或客戶端與服務器之間維持心跳的時間間隔,也就是每一個 tickTime 時間就會發送一個心跳。

2888 端口:表示的是這個服務器與集羣中的 Leader 服務器交換信息的端口;

3888 端口:表示的是萬一集羣中的 Leader 服務器掛了,須要一個端口來從新進行選舉,選出一個新的 Leader ,而這個端口就是用來執行選舉時服務器相互通訊的端口。

 

# 指定zookeeper ID(不能與其餘節點相同,kafka1:一、kafka 2:二、kafka 3:3)

[root@kafka1 conf]# vi /data/zookeeper/myid

1

[root@kafka2 conf]# vi /data/zookeeper/myid

2

[root@kafka3 conf]# vi /data/zookeeper/myid

3

3.1.4. 啓動zookeeper

# 啓動zookeeper

配置完成後,在三個節點start zookeeper

/opt/zookeeper-3.4.14/bin/zkServer.sh start

 

# 中止zookeeper

/opt/zookeeper-3.4.14/bin/zkServer.sh stop

3.1.5. 查看zookeeper狀態

# 須要在kafka啓動後查詢

[root@kafka1 ~]# /opt/zookeeper-3.4.14/bin/zkServer.sh status

ZooKeeper JMX enabled by default

Using config: /opt/zookeeper-3.4.14/bin/../conf/zoo.cfg

Mode: follower

[root@kafka2 ~]# /opt/zookeeper-3.4.14/bin/zkServer.sh status

ZooKeeper JMX enabled by default

Using config: /opt/zookeeper-3.4.14/bin/../conf/zoo.cfg

Mode: follower

[root@kafka3 ~]# /opt/zookeeper-3.4.14/bin/zkServer.sh status

ZooKeeper JMX enabled by default

Using config: /opt/zookeeper-3.4.14/bin/../conf/zoo.cfg

Mode: leader

 

# 日誌和pid位於dataDir目錄下

[root@kafka1 zookeeper]# ls /data/zookeeper/

myid  version-2  zookeeper.out  zookeeper_server.pid

3.2.   安裝配置kafka

在kafka一、kafka二、kafka3節點上操做。

3.2.1. 建立kafka目錄

mkdir -p /data/kafka

3.2.2. 解壓安裝kafka

cd /root/

tar zxf kafka_2.12-2.3.0.tgz -C /opt/

cd /opt/kafka_2.12-2.3.0/config

3.2.3. 配置kafka

# 修改如下三項

# kafka1

vi server.properties

broker.id=0

listeners=PLAINTEXT://192.168.222.211:9092

zookeeper.connect=kafka1:2181,kafka2:2181,kafka3:2181

 

# kafka2

vi server.properties

broker.id=1

listeners=PLAINTEXT://192.168.222.212:9092

zookeeper.connect=kafka1:2181,kafka2:2181,kafka3:2181

 

# kafka3

vi server.properties

broker.id=2

listeners=PLAINTEXT://192.168.222.213:9092

zookeeper.connect=kafka1:2181,kafka2:2181,kafka3:2181

 

3.2.4. 啓動kafka

# 啓動kafka

# kafka1 / kafka2 / kafka3

cd /opt/kafka_2.12-2.3.0/

nohup bin/kafka-server-start.sh config/server.properties &

 

# 若是使用kafka-manager監控,須要開啓JMX,不然會有如下報錯:

java.lang.IllegalArgumentException: requirement failed: No jmx port but jmx polling enabled!

# 啓動kafka服務時指定JMX_PORT值:

JMX_PORT=9999 nohup bin/kafka-server-start.sh config/server.properties &

 

# 中止kafka

ps -elf|grep kafka

kill -9 pid

3.2.5. 查看kafka狀態

cd /opt/kafka_2.12-2.3.0/logs/

tailf server.log

[2019-09-05 09:17:14,646] INFO [ProducerId Manager 0]: Acquired new producerId block (brokerId:0,blockStartProducerId:0,blockEndProducerId:999) by writing to Zk with path version 1 (kafka.coordinator.transaction.ProducerIdManager)

[2019-09-05 09:17:14,691] INFO [TransactionCoordinator id=0] Starting up. (kafka.coordinator.transaction.TransactionCoordinator)

[2019-09-05 09:17:14,693] INFO [TransactionCoordinator id=0] Startup complete. (kafka.coordinator.transaction.TransactionCoordinator)

[2019-09-05 09:17:14,699] INFO [Transaction Marker Channel Manager 0]: Starting (kafka.coordinator.transaction.TransactionMarkerChannelManager)

[2019-09-05 09:17:14,791] INFO [/config/changes-event-process-thread]: Starting (kafka.common.ZkNodeChangeNotificationListener$ChangeEventProcessThread)

[2019-09-05 09:17:14,831] INFO [SocketServer brokerId=0] Started data-plane processors for 1 acceptors (kafka.network.SocketServer)

[2019-09-05 09:17:14,845] INFO Kafka version: 2.3.0 (org.apache.kafka.common.utils.AppInfoParser)

[2019-09-05 09:17:14,845] INFO Kafka commitId: fc1aaa116b661c8a (org.apache.kafka.common.utils.AppInfoParser)

[2019-09-05 09:17:14,845] INFO Kafka startTimeMs: 1567646234832 (org.apache.kafka.common.utils.AppInfoParser)

[2019-09-05 09:17:14,851] INFO [KafkaServer id=0] started (kafka.server.KafkaServer)

3.2.6. 測試kafka

# 建立topic(kafka3:2181)

/opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --create --zookeeper kafka3:2181 --replication-factor 3 --partitions 1 --topic test-topic

Created topic test-topic.

 

# 查看topic

/opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --describe --zookeeper kafka3:2181 --topic test-topic

Topic:test-topic         PartitionCount:1      ReplicationFactor:3 Configs:

         Topic: test-topic        Partition: 0       Leader: 2 Replicas: 2,1,0 Isr: 2,1,0

 

/opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --describe --zookeeper kafka1:2181 --topic test-topic

Topic:test-topic         PartitionCount:1      ReplicationFactor:3 Configs:

         Topic: test-topic        Partition: 0       Leader: 2 Replicas: 2,1,0 Isr: 2,1,0

 

kafka_2.12-2.3.0]# /opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --describe --zookeeper kafka2:2181 --topic test-topic

Topic:test-topic         PartitionCount:1      ReplicationFactor:3 Configs:

         Topic: test-topic        Partition: 0       Leader: 2 Replicas: 2,1,0 Isr: 2,1,0

3.2.7. 使用kafka收發消息

# 發送消息

運行producer並在控制檯中輸一些消息,這些消息將被髮送到服務端:

/opt/kafka_2.12-2.3.0/bin/kafka-console-producer.sh --broker-list kafka3:9092 --topic test-topic

>this is test!

 

# 啓動consumer

Kafka也有一個命令行consumer能夠讀取消息並輸出到標準輸出:

/opt/kafka_2.12-2.3.0/bin/kafka-console-consumer.sh --bootstrap-server kafka2:9092 --topic test-topic --from-beginning

this is test!

 

# 遇到過如下錯誤,由於配置文件裏指定的是主機名esnode3,因此這裏須要使用主機名或者IP地址。

[root@kafka3 kafka_2.12-2.3.0]# bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test-topic

[2019-09-04 14:32:57,034] WARN [Producer clientId=console-producer] Connection to node -1 (localhost/127.0.0.1:9092) could not be established. Broker may not be available. (org.apache.kafka.clients.NetworkClient)

3.2.8. Kafka相關命令

# 列出全部topic

/opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --list --zookeeper kafka3:2181

 

# 查看topic信息

/opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --describe --zookeeper kafka3:2181 --topic system-secure

 

# 查看topic(system-secure)裏的內容。--from-beginning是從最開始到結尾

/opt/kafka_2.12-2.3.0/bin/kafka-console-consumer.sh --bootstrap-server kafka2:9092 --topic system-secure --from-beginning

3.3.   配置kafka相關服務開機自啓動

在RHEL7之前的版本可將腳本加入rc.local開機自啓動,可是RHEL7之後的版本默認不啓用rc.local,推薦使用systemd配置。

 

# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES

#

# It is highly advisable to create own systemd services or udev rules

# to run scripts during boot instead of using this file.

#

# In contrast to previous versions due to parallel execution during boot

# this script will NOT be run after all other services.

#

# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure

# that this script will be executed during boot.

 

3.3.1. 加入rc.local

vi /etc/rc.local

# 在末尾加入如下信息

# zookeeper

cd /opt/zookeeper-3.4.14/bin/

./zkServer.sh start

# kafka

cd /opt/kafka_2.12-2.3.0/

JMX_PORT=9999 nohup bin/kafka-server-start.sh config/server.properties &

# kafka-manager

cd /kafka-manager-2.0.0.2/

nohup bin/kafka-manager -Dconfig.file=conf/application.conf -Dhttp.port=8088 >> kafka-manager.log 2>&1 &

# kafka-offset-console

cd /opt/kafka-offset-console/

nohup java -cp KafkaOffsetMonitor-assembly-0.4.6-SNAPSHOT.jar \

com.quantifind.kafka.offsetapp.OffsetGetterWeb \

--offsetStorage kafka \

--kafkaBrokers kafka1:9092,kafka2:9092,kafka3:9092 \

--kafkaSecurityProtocol PLAINTEXT \

--zk kafka1:2181,kafka2:2181,kafka3:2181 \

--port 8787 \

--refresh 10.seconds  \

--retain 2.days \

--dbName offsetapp_kafka >> KafkaOffsetMonitor.log 2>&1 &

# end

3.3.2. 使用systemd配置

3.3.2.1.     Zookeeper

# 配置zookeeper的systemd腳本

vi /usr/lib/systemd/system/zookeeperd.service

[Unit]

Description=The Zookeeper Server

 

[Service]

Type=forking

Environment="JAVA_HOME=/usr/local/java/jdk1.8.0_131/"

PIDFile=/data/zookeeper/zookeeper_server.pid

ExecStart=/opt/zookeeper-3.4.14/bin/zkServer.sh start

ExecStop=/opt/zookeeper-3.4.14/bin/zkServer.sh stop

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

# 手動中止zookeeper,而後使用systemd啓動

/opt/zookeeper-3.4.14/bin/zkServer.sh stop

systemctl start zookeeperd

systemctl enable zookeeperd

 

3.3.2.2.     Kafka

# 配置kafka的systemd腳本

vi /usr/lib/systemd/system/kafkad.service

[Unit]

Description=The Kafka Server

After=network.target

 

[Service]

Type=simple

Environment="JAVA_HOME=/usr/local/java/jdk1.8.0_131/"

Environment="JMX_PORT=9999"

ExecStart=/opt/kafka_2.12-2.3.0/bin/kafka-server-start.sh /opt/kafka_2.12-2.3.0/config/server.properties

ExecStop=/bin/kill -9 ${MAINPID}

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

# 手動中止kafka,而後使用systemd啓動

systemctl start kakfad

# 測試過程當中遇到個錯誤,當service name是kafka的時候會提示

# Failed to start kakfa.service: Unit not found.

# 後來把service name改爲kafkad.service就能夠正常運行了。

systemctl enable kakfad

3.3.2.3.     Kafka-monitor

# 配置kafka的systemd腳本

vi /usr/lib/systemd/system/kafka-monitord.service

[Unit]

Description=The Kafka-monitor Server

After=network.target

 

[Service]

Type=simple

PIDFile=/opt/kafka-manager-2.0.0.2/RUNNING_PID

Environment="JAVA_HOME=/usr/local/java/jdk1.8.0_131/"

ExecStart=/opt/kafka-manager-2.0.0.2/bin/kafka-manager -Dconfig.file=/opt/kafka-manager-2.0.0.2/conf/application.conf -Dhttp.port=8088

ExecStopPost=/usr/bin/rm -f /opt/kafka-manager-2.0.0.2/RUNNING_PID

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

 

# 手動中止kafka,而後使用systemd啓動

systemctl start kafka-monitord.service

systemctl enable kafka-monitord.service

4. 安裝配置ELK

4.1.   安裝配置elasticsearch

在esnode一、esnode二、esnode3節點上操做。

4.1.1. 建立ES用戶和目錄

mkdir -p /data/es /data/eslog

 

建立用戶,es必須以非root用戶啓動

useradd elk

 

cd /root/

tar zxf elasticsearch-6.3.2.tar.gz -C /opt/

cd /opt/elasticsearch-6.3.2/config/

[root@esnode1 config]# ls

elasticsearch.yml  jvm.options  log4j2.properties  role_mapping.yml  roles.yml  users  users_roles

4.1.2. 修改ES配置

請參考三節點配置

4.1.2.1.     配置文件說明

# 根據資源狀況分配內存

vi /opt/elasticsearch-6.3.2/config/jvm.options

-Xms4g

-Xmx4g

 

# elasticsearch.yml其餘配置

# 分片(shard)與副本(replica)的數量,若是不指定默認配置參數shards=5,replicas=1。

# 通常以(節點數*1.5或3倍)來計算,好比有4個節點,分片數量通常是6個到12個,每一個分片通常分配一個副本

index.number_of_shards: 5

index.number_of_replicas: 1

 

# 能夠在建立index時指定

curl -XPUT http://demo1:9200/newindex -d '{

> settings: {

>  number_of_replicas: 1,

>  number_of_shards: 3

>  }

> }'

{"acknowledged":true}

4.1.2.2.     單節點配置

cluster.name: es-demo

# esalone

vi /opt/elasticsearch-6.3.2/config/elasticsearch.yml

cluster.name: elk-alone

node.name: esalone

path.data: /data/es

path.logs: /data/eslog

network.host: 192.168.222.211

discovery.zen.ping.unicast.hosts: ["esalone",]

4.1.2.3.     兩個節點配置

# esnode1

vi /opt/elasticsearch-6.3.2/config/elasticsearch.yml

cluster.name: es-demo

node.name: esnode1

path.data: /data/es

path.logs: /data/eslog

network.host: 192.168.222.211

discovery.zen.ping.unicast.hosts: ["esnode1", "esnode2"]

discovery.zen.minimum_master_nodes: 1

# discovery.zen.minimum_master_nodes: 1因爲只部署兩個節點,所以設置爲1,不然當master宕機,將沒法從新選取master

 

# esnode2

vi /opt/elasticsearch-6.3.2/config/elasticsearch.yml

cluster.name: es-demo

node.name: esnode2

path.data: /data/es

path.logs: /data/eslog

network.host: 192.168.222.212

discovery.zen.ping.unicast.hosts: ["esnode1", "esnode2"]

discovery.zen.minimum_master_nodes: 1

4.1.2.4.     三節點配置

# esnode1 master

vi /opt/elasticsearch-6.3.2/config/elasticsearch.yml

node.master: true

node.data: false

cluster.name: es-demo

node.name: esnode1

path.data: /data/es

path.logs: /data/eslog

http.port: 9200

transport.tcp.port: 9300

discovery.zen.ping_timeout: 100s

network.host: 192.168.222.214

discovery.zen.ping.unicast.hosts: ["esnode1", "esnode2", "esnode3"]

 

# esnode2 data.node

node.master: false

node.data: true

cluster.name: es-demo

node.name: esnode2

path.data: /data/es

path.logs: /data/eslog

http.port: 9200

transport.tcp.port: 9300

discovery.zen.ping_timeout: 100s

network.host: 192.168.222.215

discovery.zen.ping.unicast.hosts: ["esnode1", "esnode2", "esnode3"]

 

# esnode3 data.node

node.master: false

node.data: true

cluster.name: es-demo

node.name: esnode3

path.data: /data/es

path.logs: /data/eslog

http.port: 9200

transport.tcp.port: 9300

discovery.zen.ping_timeout: 100s

network.host: 192.168.222.216

discovery.zen.ping.unicast.hosts: ["esnode1", "esnode2", "esnode3"]

4.1.3. 啓動ES

修改ES目錄權限

chown -R elk. /opt/elasticsearch-6.3.2/ /data/es /data/eslog

 

# 啓動ES

su - elk

cd /opt/elasticsearch-6.3.2

bin/elasticsearch -d

 

# 中止ES

su - elk

ps -elf|grep elasticsearch

kill -9 pid

4.1.4. 查看ES狀態

tailf /data/eslog/es-demo.log

[2019-09-05T09:41:16,610][INFO ][o.e.p.PluginsService     ] [esnode3] loaded module [x-pack-watcher]

[2019-09-05T09:41:16,610][INFO ][o.e.p.PluginsService     ] [esnode3] no plugins loaded

[2019-09-05T09:41:21,277][INFO ][o.e.x.s.a.s.FileRolesStore] [esnode3] parsed [0] roles from file [/opt/elasticsearch-6.3.2/config/roles.yml]

[2019-09-05T09:41:22,255][INFO ][o.e.x.m.j.p.l.CppLogMessageHandler] [controller/15516] [Main.cc@109] controller (64 bit): Version 6.3.2 (Build 903094f295d249) Copyright (c) 2018 Elasticsearch BV

[2019-09-05T09:41:22,765][DEBUG][o.e.a.ActionModule       ] Using REST wrapper from plugin org.elasticsearch.xpack.security.Security

[2019-09-05T09:41:23,044][INFO ][o.e.d.DiscoveryModule    ] [esnode3] using discovery type [zen]

[2019-09-05T09:41:24,105][INFO ][o.e.n.Node               ] [esnode3] initialized

[2019-09-05T09:41:24,105][INFO ][o.e.n.Node               ] [esnode3] starting ...

[2019-09-05T09:41:24,284][INFO ][o.e.t.TransportService   ] [esnode3] publish_address {192.168.222.216:9300}, bound_addresses {192.168.222.216:9300}

[2019-09-05T09:41:24,303][INFO ][o.e.b.BootstrapChecks    ] [esnode3] bound or publishing to a non-loopback address, enforcing bootstrap checks

[2019-09-05T09:41:54,335][WARN ][o.e.n.Node               ] [esnode3] timed out while waiting for initial discovery state - timeout: 30s

[2019-09-05T09:41:54,347][INFO ][o.e.x.s.t.n.SecurityNetty4HttpServerTransport] [esnode3] publish_address {192.168.222.216:9200}, bound_addresses {192.168.222.216:9200}

[2019-09-05T09:41:54,347][INFO ][o.e.n.Node               ] [esnode3] started

 

# 瀏覽器訪問任意節點

http://esnode1:9200/_cluster/health?pretty

# status爲green表示正常,yellow爲警告,red爲故障

# number_of_nodes節點數爲3,number_of_data_nodes數據節點數爲2。符合預期。

{

  "cluster_name" : "es-demo",

  "status" : "green",

  "timed_out" : false,

  "number_of_nodes" : 3,

  "number_of_data_nodes" : 2,

  "active_primary_shards" : 0,

  "active_shards" : 0,

  "relocating_shards" : 0,

  "initializing_shards" : 0,

  "unassigned_shards" : 0,

  "delayed_unassigned_shards" : 0,

  "number_of_pending_tasks" : 0,

  "number_of_in_flight_fetch" : 0,

  "task_max_waiting_in_queue_millis" : 0,

  "active_shards_percent_as_number" : 100.0

}

4.2.   安裝配置logstash

在logstash1節點上操做。

4.2.1. 解壓安裝logstash

cd /root/

tar zxf logstash-6.3.2.tar.gz -C /opt/

cd /opt/logstash-6.3.2

[root@logstash1 logstash-6.3.2]# ls

 bin  conf  config  CONTRIBUTORS  data  Gemfile  Gemfile.lock  lib  LICENSE.txt  logs  logstash-core  logstash-core-plugin-api  modules  NOTICE.TXT  tools  vendor  x-pack

4.2.2. 啓動測試

/opt/logstash-6.3.2/bin/logstash -e 'input { stdin { type => test } } output { stdout {  } }'

Sending Logstash's logs to /opt/logstash-6.3.2/logs which is now configured via log4j2.properties

[2019-09-05T09:48:44,776][INFO ][logstash.setting.writabledirectory] Creating directory {:setting=>"path.queue", :path=>"/opt/logstash-6.3.2/data/queue"}

[2019-09-05T09:48:44,788][INFO ][logstash.setting.writabledirectory] Creating directory {:setting=>"path.dead_letter_queue", :path=>"/opt/logstash-6.3.2/data/dead_letter_queue"}

[2019-09-05T09:48:45,412][WARN ][logstash.config.source.multilocal] Ignoring the 'pipelines.yml' file because modules or command line options are specified

[2019-09-05T09:48:45,466][INFO ][logstash.agent           ] No persistent UUID file found. Generating new UUID {:uuid=>"2bc34073-1e96-483a-9814-c9d1c5405b93", :path=>"/opt/logstash-6.3.2/data/uuid"}

[2019-09-05T09:48:46,259][INFO ][logstash.runner          ] Starting Logstash {"logstash.version"=>"6.3.2"}

[2019-09-05T09:48:49,680][INFO ][logstash.pipeline        ] Starting pipeline {:pipeline_id=>"main", "pipeline.workers"=>2, "pipeline.batch.size"=>125, "pipeline.batch.delay"=>50}

[2019-09-05T09:48:49,836][INFO ][logstash.pipeline        ] Pipeline started successfully {:pipeline_id=>"main", :thread=>"#<Thread:0x21302140 run>"}

The stdin plugin is now waiting for input:

[2019-09-05T09:48:49,939][INFO ][logstash.agent           ] Pipelines running {:count=>1, :running_pipelines=>[:main], :non_running_pipelines=>[]}

[2019-09-05T09:48:50,234][INFO ][logstash.agent           ] Successfully started Logstash API endpoint {:port=>9600}

logstash for test

{

      "@version" => "1",

       "message" => "logstash for test",

    "@timestamp" => 2019-09-05T01:49:07.161Z,

          "type" => "test",

          "host" => "logstash1"

}

4.2.3. Logstash配置實例

4.2.3.1.     Local->ES

 

input {

    file {

        type => "rsyslog"

        path => "/var/log/messages"

        discover_interval => 10 # 監聽間隔

        start_position => "beginning" #從頭開始

    }

}

 

output {

    elasticsearch {

        hosts => ["192.168.222.214:9200","192.168.222.215:9200","192.168.222.216:9200"]

        index => "messages-%{+YYYY.MM.dd}"

    }

}

 

%{+YYYY.MM.dd}

這裏日期格式建議統一,以便後期對es的index進行統一管理。

4.2.3.2.     Local->KAFKA

 

input {

    file {

        type=>"haproxy-access"

        path=>"/var/log/haproxy.log"

        discover_interval => 10 # 監聽間隔

        start_position => "beginning" #從頭開始

    }

}

 

output {

    kafka {

        bootstrap_servers => "192.168.222.211:9092,192.168.222.212:9092,192.168.222.213:9092"

        topic_id => "system-secure"

        compression_type => "snappy"

    }

stdout {

    codec => rubydebug

    }

}

 

# 注:

bootstrap_servers => "192.168.222.211:9092,192.168.222.212:9092,192.168.222.213:9092":指定kafka節點

topic_id => "system-secure":在kafka上建立「system-secure」的topic

compression_type => "snappy":指定壓縮類型

codec => rubydebug:這是標準輸出到終端,能夠用於調試看有沒有輸出,注意輸出的方向能夠有多個

 

# 可經過kafka查看是否生成topic

[root@kafka1 ~]# /opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --list --zookeeper kafka3:2181

__consumer_offsets

system-secure

 

# 查看topic裏的內容

[root@kafka1 ~]# /opt/kafka_2.12-2.3.0/bin/kafka-console-consumer.sh --bootstrap-server kafka2:9092 --topic system-secure --from-beginning

……

4.2.3.3.     KAFKA->ES

 

input{

    kafka{

        bootstrap_servers => "192.168.222.211:9092,192.168.222.212:9092,192.168.222.213:9092"

        topics => ["topic-haproxy","test-topic"]

        consumer_threads => 1

        decorate_events => true

#        codec => "json"

        auto_offset_reset => "latest"

    }

}

 

output{

    elasticsearch {

        hosts=>["192.168.222.214:9200","192.168.222.215:9200","192.168.222.216:9200"]

        index => "system-log-%{+YYYY.MM.dd}"

    }

    stdout{

        codec => "rubydebug"

    }

}

 

input

topics => ["topic-haproxy","test-topic"]:能夠指定kafka上的多個topic

output

hosts=>["192.168.222.214:9200","192.168.222.215:9200","192.168.222.216:9200"]:指定ES節點

index => "system-log-%{+YYYY.MM.dd}":會在ES建立system-log-日期的index

4.2.4. 建立配置並啓動

建立conf文件用於收集日誌(可參考上面的配置實例)

vi /opt/logstash-6.3.2/config/syslog-2-es.conf

input {

    file {

        type=>"syslog"

        path=>"/var/log/messages"

        discover_interval => 10 # 監聽間隔

        start_position => "beginning" #從頭開始

    }

}

output {

    elasticsearch {

        hosts =>["192.168.222.214:9200","192.168.222.215:9200","192.168.222.216:9200"]

        index =>"syslog-%{+YYYY.MM.dd}"

    }

}

 

# 啓動logstash

cd /opt/logstash-6.3.2/

nohup bin/logstash -f config/syslog-2-es.conf &

# 啓動前可先測試配置文件

# bin/logstash -f config/syslog-2-es.conf -t

 

# 中止logstash

ps -elf|grep logstash

kill -9 pid

4.2.5. 查看logstash狀態

cd /opt/logstash-6.3.2/

tail -f nohup.out

Sending Logstash's logs to /opt/logstash-6.3.2/logs which is now configured via log4j2.properties

[2019-09-05T11:27:48,163][WARN ][logstash.config.source.multilocal] Ignoring the 'pipelines.yml' file because modules or command line options are specified

[2019-09-05T11:27:48,949][INFO ][logstash.runner          ] Starting Logstash {"logstash.version"=>"6.3.2"}

[2019-09-05T11:27:51,770][INFO ][logstash.pipeline        ] Starting pipeline {:pipeline_id=>"main", "pipeline.workers"=>2, "pipeline.batch.size"=>125, "pipeline.batch.delay"=>50}

[2019-09-05T11:27:52,402][INFO ][logstash.outputs.elasticsearch] Elasticsearch pool URLs updated {:changes=>{:removed=>[], :added=>[http://192.168.222.214:9200/, http://192.168.222.215:9200/, http://192.168.222.216:9200/]}}

[2019-09-05T11:27:52,415][INFO ][logstash.outputs.elasticsearch] Running health check to see if an Elasticsearch connection is working {:healthcheck_url=>http://192.168.222.214:9200/, :path=>"/"}

[2019-09-05T11:27:52,720][WARN ][logstash.outputs.elasticsearch] Restored connection to ES instance {:url=>"http://192.168.222.214:9200/"}

[2019-09-05T11:27:52,792][INFO ][logstash.outputs.elasticsearch] ES Output version determined {:es_version=>6}

[2019-09-05T11:27:52,796][WARN ][logstash.outputs.elasticsearch] Detected a 6.x and above cluster: the `type` event field won't be used to determine the document _type {:es_version=>6}

[2019-09-05T11:27:52,798][INFO ][logstash.outputs.elasticsearch] Running health check to see if an Elasticsearch connection is working {:healthcheck_url=>http://192.168.222.215:9200/, :path=>"/"}

[2019-09-05T11:27:52,808][WARN ][logstash.outputs.elasticsearch] Restored connection to ES instance {:url=>"http://192.168.222.215:9200/"}

[2019-09-05T11:27:52,818][INFO ][logstash.outputs.elasticsearch] Running health check to see if an Elasticsearch connection is working {:healthcheck_url=>http://192.168.222.216:9200/, :path=>"/"}

[2019-09-05T11:27:52,824][WARN ][logstash.outputs.elasticsearch] Restored connection to ES instance {:url=>"http://192.168.222.216:9200/"}

[2019-09-05T11:27:52,867][INFO ][logstash.outputs.elasticsearch] New Elasticsearch output {:class=>"LogStash::Outputs::ElasticSearch", :hosts=>["//192.168.222.214:9200", "//192.168.222.215:9200", "//192.168.222.216:9200"]}

[2019-09-05T11:27:52,895][INFO ][logstash.outputs.elasticsearch] Using mapping template from {:path=>nil}

[2019-09-05T11:27:52,908][INFO ][logstash.outputs.elasticsearch] Attempting to install template {:manage_template=>{"template"=>"logstash-*", "version"=>60001, "settings"=>{"index.refresh_interval"=>"5s"}, "mappings"=>{"_default_"=>{"dynamic_templates"=>[{"message_field"=>{"path_match"=>"message", "match_mapping_type"=>"string", "mapping"=>{"type"=>"text", "norms"=>false}}}, {"string_fields"=>{"match"=>"*", "match_mapping_type"=>"string", "mapping"=>{"type"=>"text", "norms"=>false, "fields"=>{"keyword"=>{"type"=>"keyword", "ignore_above"=>256}}}}}], "properties"=>{"@timestamp"=>{"type"=>"date"}, "@version"=>{"type"=>"keyword"}, "geoip"=>{"dynamic"=>true, "properties"=>{"ip"=>{"type"=>"ip"}, "location"=>{"type"=>"geo_point"}, "latitude"=>{"type"=>"half_float"}, "longitude"=>{"type"=>"half_float"}}}}}}}}

[2019-09-05T11:27:53,443][INFO ][logstash.pipeline        ] Pipeline started successfully {:pipeline_id=>"main", :thread=>"#<Thread:0x2cd67006 run>"}

[2019-09-05T11:27:53,576][INFO ][logstash.agent           ] Pipelines running {:count=>1, :running_pipelines=>[:main], :non_running_pipelines=>[]}

[2019-09-05T11:27:54,413][INFO ][logstash.agent           ] Successfully started Logstash API endpoint {:port=>9600}

 

啓動完成後訪問es,查看是否有索引(正常產生數據)

[root@esnode1 ~]# curl http://esnode1:9200/_cat/indices?v

health status index           uuid                   pri rep docs.count docs.deleted store.size pri.store.size

green  open   .kibana         nM-_L7acQ2S-i5INmT4v2A   1   1          2            0     20.8kb         10.4kb

green  open   syslog-2019-09-09 sfFCvc5pQgWDXNeTeECiPw   5   1       8199            0      5.1mb          2.5mb

4.3.   安裝配置kibana

在kibana1節點上操做。

4.3.1. 建立kibana用戶和目錄

useradd elk

mkdir -p /data/kibana

4.3.2. 解壓配置kibana

cd /root/

tar zxf kibana-6.3.2-linux-x86_64.tar.gz -C /opt/

4.3.3. 配置kibana文件

cd /opt/kibana-6.3.2-linux-x86_64/

[root@kibana1 kibana-6.3.2-linux-x86_64]# ls

bin  config  data  LICENSE.txt  node  node_modules  NOTICE.txt  optimize  package.json  plugins  README.txt  src  webpackShims  yarn.lock

[root@kibana1 kibana-6.3.2-linux-x86_64]# grep '^[a-Z]' config/kibana.yml

server.host: "192.168.222.218"

server.port: 5601

server.name: "kibana1"

elasticsearch.url: "http://esnode1:9200"

# 指定kibana日誌位置,不指定爲標準輸出

logging.dest: /data/kibana/kibana.log

# 指定kibana pid位置,不指定不會生成pid文件

pid.file: /data/kibana/kibana.pid

 

# 若是啓用了認證則須要相應的輸入用戶名和密碼

# elasticsearch.username: "kibana"

# elasticsearch.password: "password"

 

4.3.4. 啓動kibana

前提是elasticSearch已經啓動且狀態正常

# 修改ES目錄權限

chown -R elk. /opt/kibana-6.3.2-linux-x86_64/ /data/kibana

# 啓動Kibana

su - elk

cd /opt/kibana-6.3.2-linux-x86_64/bin

./kibana &

# 中止kibana

獲取pid(若是指定了pid文件,直接cat /data/kibana/kibana.pid)

ps -elf|grep node

kill -9 15409

4.3.5. 查看kibana狀態

查看kibana日誌

tailf /data/kibana/kibana.log

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:watcher@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:index_management@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:graph@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:security@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:grokdebugger@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:logstash@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["status","plugin:reporting@6.3.2","info"],"pid":18599,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["info","monitoring-ui","kibana-monitoring"],"pid":18599,"message":"Starting all Kibana monitoring collectors"}

{"type":"log","@timestamp":"2019-09-06T22:00:50Z","tags":["license","info","xpack"],"pid":18599,"message":"Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active"}

{"type":"log","@timestamp":"2019-09-06T22:00:58Z","tags":["listening","info"],"pid":18599,"message":"Server running at http://192.168.222.218:5601"}

 

打開瀏覽器,輸入」http://IP:5601」後查看頁面

 

 

 

如前面的Logstash、ElasticSearch等正常,且Kafka中有數據傳入,則會有建索引界面,建完索引後,點擊「Discover」按鈕,出現日誌查詢界面

(因爲沒有日誌過來,這裏都是空的)

 

 

 

4.3.6. 配置kibana

當有數據生成時,能夠看到相應的index

 

 

 

能夠根據不一樣的索引,建立不一樣的index pattern

 

 

 

一樣也能夠匹配全部

 

 

 

能夠定義filter

 

 

 

配置完成後,可在discover查看

 

 

 

4.4.   安裝配置filebeat(選裝)

logstash 和filebeat都具備日誌收集功能,filebeat更輕量,佔用資源更少,但logstash 具備filter功能,能過濾分析日誌。通常結構都是filebeat採集日誌,而後發送到消息隊列,redis,kafaka。而後logstash去獲取,利用filter功能過濾分析,而後存儲到elasticsearch中.

4.4.1. 解壓安裝filebeat

cd /root/

tar zxf filebeat-6.3.2-linux-x86_64.tar.gz -C /opt/

cd /opt/filebeat-6.3.2-linux-x86_64/

ls

data  fields.yml  filebeat  filebeat.reference.yml  filebeat.yml  kibana  LICENSE.txt  module  modules.d  NOTICE.txt  README.md

4.4.2. filebeat配置實例

4.4.2.1.     Local->ES

 

filebeat.inputs:

- type: log

  # Change to true to enable this input configuration.

  enabled: true

  paths:

    - /var/log/*

    - /var/log/httpd/*

output.elasticsearch:

  hosts: ["192.168.222.214:9200","192.168.222.215:9200","192.168.222.216:9200"]

  index: "filebeat-%{+YYYY.MM.dd}"

setup.template.name: "filebeat"

setup.template.pattern: "filebeat-*"

 

paths:

    - /var/log/*  # /var/log/*指定的是/var/log/目錄下的全部文件(不包含子目錄)。filebeat不會自動遞歸日誌目錄下的子目錄, 若是須要遞歸子目錄可使用相似 /var/log/*/*.log

 

index

# index名稱不能是大寫,不然沒法在ES上建立

索引名字。(PS:意思是要發到哪一個索引中去)。默認是"filebeat-%{[beat.version]}-%{+yyyy.MM.dd}"(例如,"filebeat-6.3.2-2017.04.26")。若是你想改變這個設置,你須要配置 setup.template.name 和 setup.template.pattern 選項。若是你用內置的Kibana dashboards,你也須要設置setup.dashboards.index選項。

%{+YYYY.MM.dd}

這裏日期格式建議統一,以便後期對es的index進行統一管理。

4.4.2.2.     Local->KAFKA

 

filebeat.inputs:

- type: log

  # Change to true to enable this input configuration.

  enabled: true

  paths:

    - /var/log/*

output.kafka:

  hosts: ["192.168.222.211:9092","192.168.222.212:9092","192.168.222.213:9092"]

  topic: topic-demo

  required_acks: 1

 

# 注:

hosts: ["192.168.222.211:9092","192.168.222.212:9092","192.168.222.213:9092"]:指定kafka節點

 

# 可經過kafka查看是否生成topic

[root@kafka1 ~]# /opt/kafka_2.12-2.3.0/bin/kafka-topics.sh --list --zookeeper kafka3:2181

__consumer_offsets

system-secure

 

# 查看topic裏的內容

[root@kafka1 ~]# /opt/kafka_2.12-2.3.0/bin/kafka-console-consumer.sh --bootstrap-server kafka2:9092 --topic system-secure --from-beginning

……

4.4.2.3.     KAFKA->ES

 

input{

    kafka{

        bootstrap_servers => "192.168.222.211:9092,192.168.222.212:9092,192.168.222.213:9092"

        topics => "system-secure"

        consumer_threads => 1

        decorate_events => true

#        codec => "json"

        auto_offset_reset => "latest"

    }

}

 

output{

    elasticsearch {

        hosts=>["192.168.222.214:9200","192.168.222.215:9200","192.168.222.216:9200"]

        index => "system-log-%{+YYYY.MM.dd}"

    }

    stdout{

        codec => "rubydebug"

    }

}

 

4.4.3. 啓動filebeat

# 啓動filebeat

cd /opt/filebeat-6.3.2-linux-x86_64/

nohup ./filebeat -e -c filebeat.yml &

# -e會詳細輸入傳輸的日誌,若是日誌量很大就不要加此參數

 

# 中止filebeat

ps -elf|grep filebeat

kill -9 pid

4.4.4. 查看filebeat狀態

tailf /opt/filebeat-6.3.2-linux-x86_64/nohup.out

# 能夠看到和kafka創建鏈接

# 正常狀況下會每30s更新一條日誌記錄INFO     [monitoring]

2019-09-07T22:18:39.250+0800    INFO    kafka/log.go:36 kafka message: Successfully initialized new client

2019-09-07T22:18:39.255+0800    INFO    kafka/log.go:36 producer/broker/0 starting up

2019-09-07T22:18:39.255+0800    INFO    kafka/log.go:36 producer/broker/0 state change to [open] on topic-demo/0

2019-09-07T22:18:39.268+0800    INFO    kafka/log.go:36 Connected to broker at 192.168.222.211:9092 (registered as #0)

2019-09-07T22:18:39.335+0800    INFO    kafka/log.go:36 producer/broker/0 maximum request accumulated, waiting for space

2019-09-07T22:18:39.380+0800    INFO    kafka/log.go:36 producer/broker/0 maximum request accumulated, waiting for space

2019-09-07T22:18:39.758+0800    INFO    kafka/log.go:36 producer/broker/0 maximum request accumulated, waiting for space

2019-09-07T22:19:09.188+0800    INFO    [monitoring]    log/log.go:124  Non-zero metrics in the last 30s        {"monitoring": {"metrics": {"beat":{"cpu":{"system":{"ticks":120,"time":{"ms":125}},"total":{"ticks":2080,"time":{"ms":2093},"value":2080},"user":{"ticks":1960,"time":{"ms":1968}}},"info":{"ephemeral_id":"369117a9-f4ec-482c-af8b-153eadc6236d","uptime":{"ms":30015}},"memstats":{"gc_next":12647968,"memory_alloc":6865424,"memory_total":225985464,"rss":41283584}},"filebeat":{"events":{"added":34207,"done":34207},"harvester":{"open_files":42,"running":42,"started":42}},"libbeat":{"config":{"module":{"running":0}},"output":{"events":{"acked":34153,"batches":17,"total":34153},"type":"kafka"},"outputs":{"kafka":{"bytes_read":3194,"bytes_write":1116805}},"pipeline":{"clients":1,"events":{"active":0,"filtered":54,"published":34153,"retry":2048,"total":34207},"queue":{"acked":34153}}},"registrar":{"states":{"current":42,"update":34207},"writes":{"success":23,"total":23}},"system":{"cpu":{"cores":2},"load":{"1":0.02,"15":0.05,"5":0.02,"norm":{"1":0.01,"15":0.025,"5":0.01}}}}}}

4.5.   配置ELK相關服務開機自啓動

4.5.1. 加入rc.local

vi /etc/rc.local

# 在末尾加入如下信息

# elasticsearch

su - elk -c "/opt/elasticsearch-6.3.2/bin/elasticsearch -d"

# kibana

cd /opt/kibana-6.3.2-linux-x86_64/bin

./kibana &

#logstash

cd /opt/logstash-6.3.2/

nohup bin/logstash -f config/haproxy.conf &

4.5.2. 使用systemd配置

4.5.2.1.     Elasticsearch

# 配置elasticsearch的systemd腳本

vi /usr/lib/systemd/system/elasticsearchd.service

[Unit]

Description=The Elasticsearch Server

 

[Service]

Type=forking

User=elk

PIDFile=/data/es/elasticsearch.pid

LimitNOFILE=65536

Environment="JAVA_HOME=/usr/local/java/jdk1.8.0_131/"

ExecStart=/opt/elasticsearch-6.3.2/bin/elasticsearch -d -p /data/es/elasticsearch.pid

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

# 手動中止elasticsearch,而後使用systemd啓動

systemctl start elasticsearchd.service

systemctl enable elasticsearchd.service

 

4.5.2.2.     Kibana

# 配置kibana的systemd腳本

vi /usr/lib/systemd/system/kibanad.service

[Unit]

Description=The Kibana Server

 

[Service]

Type=simple

User=elk

Environment="JAVA_HOME=/usr/local/java/jdk1.8.0_131/"

ExecStart=/opt/kibana-6.3.2-linux-x86_64/bin/kibana

ExecStop=/bin/kill -9 ${MAINPID}

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

# 手動中止kibana,而後使用systemd啓動

systemctl start kibanad.service

systemctl enable kibanad.service

 

4.5.2.3.     Logstash

# 配置logstash的systemd腳本

vi /usr/lib/systemd/system/logstashd.service

[Unit]

Description=The Logstash Server

 

[Service]

Type=simple

Environment="JAVA_HOME=/usr/local/java/jdk1.8.0_131/"

ExecStart=/opt/logstash-6.3.2/bin/logstash -f /opt/logstash-6.3.2/config/haproxy.conf

ExecStop=/bin/kill -9 ${MAINPID}

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

# 手動中止logstash,而後使用systemd啓動

systemctl start logstashd.service

systemctl enable logstashd.service

 

4.5.2.4.     Filebeat

# 配置filebeat的systemd腳本

vi /usr/lib/systemd/system/filebeatd.service

[Unit]

Description=The Filebeat Server

 

[Service]

Type=sample

ExecStart=/opt/filebeat-6.3.2-linux-x86_64/filebeat -e -c /opt/filebeat-6.3.2-linux-x86_64/filebeat.yml

ExecStop=/bin/kill -9 ${MAINPID}

Restart=on-failure

 

[Install]

WantedBy=multi-user.target

# 手動中止filebeat,而後使用systemd啓動

systemctl start filebeatd.service

systemctl enable filebeatd.service

相關文章
相關標籤/搜索