linux install elk summary

kabana

1.下载 wget https://artifacts.elastic.co/downloads/kibana/kibana-5.5.2-linux-x86_64.tar.gz
2.解压 tar -xzf kibana-5.5.2-linux-x86_64.tar.gz
3.启动 bin下  ./kibana

logstash

1.下载压缩包 wget https://artifacts.elastic.co/downloads/logstash/logstash-5.5.2.tar.gz
出现 cannot verify 证书问题,则用以下命令
wget https://artifacts.elastic.co/downloads/logstash/logstash-5.5.2.tar.gz --no-check-certificate
2.解压 tar -xzf logstash-5.5.2.tar.gz
3.启动 bin/logstash -e 'input { stdin { } } output { stdout {} }'
 在bin目录下则为 ./logstash -e 'input { stdin { } } output { stdout {} }'

Problems elasticsearch: the OpenJDK warning the VM 64-Bit Server: The Number of the If Processors IS expected to Increase
from One, the then you Should The Configure Threads Number of Parallel appropriately the using the GC
-XX: N = ParallelGCThreads
edit logstash-5.5.2 / config / jvm.options adding a line parameter -XX: ParallelGCThreads = NN custom digital

elasticsearch

1. wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.2.tar.gz  下载
2. tar -zxvf   elasticsearch-5.5.2.tar.gz 解压 
3. 进入elasticsearch-5.5.2  bin目录启动 sh elasticsearch -d 其中 -d 表示后台启动

Problems 1.
Exception in Thread "main" java.nio.file.AccessDeniedException
permission to issue switching chown root user Username: Username elasticsearch-5.5.2 -R

Problems 2.
elasticsearch: the OpenJDK warning the VM 64-Bit Server: The Number of the If Processors IS expected to Increase
from One, the then you Should The Configure Threads Number of Parallel appropriately the using the GC
-XX: N = ParallelGCThreads
edit elasticsearch-5.5.2 / config / jvm.options adding a line parameter -XX: ParallelGCThreads = NN custom digital

Published 43 original articles · won praise 6 · views 10000 +

Guess you like

Origin blog.csdn.net/weixin_43866295/article/details/102939150