elk简单环境搭建 for linux
环境:ubuntu 16.06虚拟机:4核8G内存
在官网下载的tag.gz
包,官网地址https://www.elastic.co/webinars/introduction-elk-stack
安装版本是5.4.1,本文只安装了Elasticsearch
、Logstash
、Kibana
Elasticsearch
- 下载压缩包并解压
- 在es的根目录下
config/elasticsearch.yml
文件,内容如下1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20# Use a descriptive name for the node:
node.name: xuannode ##不要有'-'、'_'、'+'
# Path to directory where to store the data (separate multiple locations by comma):
#
path.data: /home/huangyuan/elk/elasticsearch/data
#
# Path to log files:
#
path.logs: /home/huangyuan/elk/elasticsearch/logs/*
#
# 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
discovery.zen.ping.unicast.hosts: ["0.0.0.0"]
http.cors.enabled: true
http.cors.allow-origin: "*"logstash
- 下载压缩包并解压
- 创建一个
logstash.conf
文件,输入以下内容并保存:1
2
3
4
5
6
7
8
9
10
11
12input{
file {
path => "/home/huangyuan/elkdata/*.log"
}
}
output {
elasticsearch {
hosts => "http://192.168.1.179:9200"
index => "logstash-%{+YYYY.MM.dd}"
}
stdout {}
} - 启动时执行
bin/logstash -f logstash.conf
kibana
- 下载压缩包并解压缩
- 编辑
config/kibana.yml
1
2
3
4
5
6
7
8
9
10# 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: "192.168.1.179"
# The Kibana server's name. This is used for display purposes.
server.name: "xuankibina"
# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://192.168.1.179:9200"
启动的时候依次启动 es、logstash、kibana就可以了
PS:
1.在LogStash的配置文件logstash.conf
中,input
配置的就是logstash要监听的文件路径,启动之后,先在监听的文件夹中创建一个log文件并输入随意内容。
2. elasticsearch
不能用root
用户启动
3. 启动es报错max virtual memory areas vm.max_map_count [65530]is too low, increase to at least [262144]
:解决方法是修改/etc/sysctl.conf
配置文件,添加vm.max_map_count=262144
,重启机器才起作用.
以上
elk简单环境搭建 for linux
https://blog.huangyuanlove.com/2017/06/13/elk简单环境搭建-for-linux/