版本选择
filebeat-5.6.15-x86_64.rpm
Filebeat安装
Filebeat安装在日志源服务器上。
-
ElasticStack历史版本下载链接
根据实际系统环境选择合适的包。
2.将包上传至服务器临时目录。
3.安装Filebeat
rpm -ivh filebeat-5.6.15-x86_64.rpm
4.配置filebeat.yml
filebeat.yml详情,如下:
filebeat.prospectors:
- input_type: log
paths:
- /usr/mylog/*.log
output.logstash:
# The Logstash hosts
hosts: "10.10.61.205:5044"
- 运行Filebeat
- Filebeat前台启动
./filebeat -e -c /etc/filebeat/filebeat.yml
- Filebeat前台停止
按组合键ctrl+c即可停止Filebeat运行。 - Filebeat后台启动
nohup ./filebeat -e -c /etc/filebeat/filebeat.yml &
- Filebeat进程查询
ps -ef|grep filebeat
- Filebeat后台停止
kill -9 32547
32547为上步查询出的pid。
- Filebeat前台启动