Last active
June 28, 2018 06:38
-
-
Save novohool/392b38a3a1ec9cd699f0f30c1955e9cd to your computer and use it in GitHub Desktop.
ELK安装文档
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[在线文档一](https://docs.qq.com/doc/BqI21X2yZIht160ylF4ykVIo3tqew10YxTb51sV5ji3JWde20?opendocxfrom=admin) | |
[在线文档二](https://github.com/ameizi/ELK/issues/2) | |
``` | |
https://github.com/ameizi/ELK/issues/2 | |
``` | |
使用docker一键部署 | |
``` | |
docker run -p 5601:5601 -p 9200:9200 -p 5044:5044 -e ES_MIN_MEM=128m -e ES_MAX_MEM=1024m -it --name elk sebp/elk:es220_l222_k441 | |
service logstash stop | |
/opt/logstash/bin/logstash -e 'input { stdin { } } output { elasticsearch { hosts => ["localhost"] } }' | |
service logstash start | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment