在Raspberry PI 3上安装Filebeat

型号:Raspberry PI 3B
树莓派系统:Ubuntu MATE 16.04
ELK版本:都是5.0版本

之前没有注意到这个问题,使用树莓派时发现预置源里没有相关的东西,才感觉到是ARM在捣乱;
如何在树莓派3B上运行File beat呢?Google了一下,找到了一篇帖子:Installing Filebeat on Raspberry PI 3
下面简单整理了出来:

解决软件依赖

vim,git,python-pip,virtualenv

apt-get install vim git python-pip
pip install virtualenv

安装Go

Raspberry Pi基于ARMv6架构,运行在树莓派上的Beat是用go编写的,默认附带的go-1.7.*总是出现问题
在此重新安装go-1.9.2版本(如果有旧版本,建议卸载干净)

cd ~/
wget https://redirector.gvt1.com/edgedl/go/go1.9.2.linux-armv6l.tar.gz
tar -C /usr/local -xvf go1.9.2.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin

检查能否正常使用:

go version
</pre>

下载并构建Filebeat

首先需要设置一个目录来构建Filebeat,在这里使用根目录的~/go目录,并需要配置GOPATH环境变量

root@raspberrypi:~# export GOPATH=$HOME/go
root@raspberrypi:~# mkdir go
root@raspberrypi:~# mkdir -p ${GOPATH}/src/github.com/elastic
root@raspberrypi:~# cd ${GOPATH}/src/github.com/elastic
root@raspberrypi:~/go/src/github.com/elastic#

开始build(构建):

root@raspberrypi:~/go/src/github.com/elastic# git clone https://github.com/elastic/beats.git
root@raspberrypi:~/go/src/github.com/elastic# cd beats/ 
root@raspberrypi:~/go/src/github.com/elastic/beats# git checkout 23b9e27
root@raspberrypi:~/go/src/github.com/elastic/beats# cd filebeat/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# make
go build -i
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# make update
New python executable in /root/go/src/github.com/elastic/beats/filebeat/build/python-env/bin/python
Installing setuptools, pip, wheel...done.
find: warning: you have specified the -maxdepth option after a non-option argument -type, but options are not positional (-maxdepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.

find: warning: you have specified the -mindepth option after a non-option argument -type, but options are not positional (-mindepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.

Updating generated files for filebeat
make[1]: Entering directory '/root/go/src/github.com/elastic/beats/libbeat'
make[1]: Leaving directory '/root/go/src/github.com/elastic/beats/libbeat'
-- The index pattern was created under /home/user/go/src/github.com/elastic/beats/filebeat/_meta/kibana/5.x/index-pattern/filebeat.json
-- The index pattern was created under /home/user/go/src/github.com/elastic/beats/filebeat/_meta/kibana/default/index-pattern/filebeat.json

注意:上边的git checkout我实际操作失败了,最终跳过了这一步,但filebeat也可以正常build完成并使用;接下来的make输出是仿照帖子的结果,并非我操作的实际输出信息,这里仅供参考。

git checkout主要目的应该是确定版本信息是否有问题:

Two items to bear in mind as part of building filebeat:
The git checkout command is important. Each version of the beats plugin is designed to work with the same version of Logstash and Elasticsearch. The appropriate hashcode for the target release can be found at the elastic/beats release site. When running filbeat for the first time (below) ensure the built version is what was expected.
Compiling things with go is supposed to take a large amount of memory. Some of the guides mentioned the need to increase the default amount of swap file available. When completing the above steps on a Raspberry Pi 3 this was not required.

完成构建后会生成filebeat可执行文件,不出意外,filebeat可以正常启动了:

root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# ./filebeat -e -v

完成安装

现在filebeat已经可以使用,为了服务启动和管理更加方便,最后指定一下filebeat的各种目录和服务配置:

目录类型 描述 默认位置 Debian默认路径
home Filebeat的安装目录 - /usr/share/filebeat
bin 二进制文件目录 {filebeat}/bin /usr/share/filebeat/bin
config 配置文件目录 {filebeat} /etc/filebeat
data 数据文件目录 {filebeat}/data /var/lib/filebeat
logs 日志文件目录 {filebeat}/logs /var/log/filebeat
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# mkdir /usr/share/filebeat /usr/share/filebeat/bin /etc/filebeat /var/log/filebeat /var/lib/filebeat
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# mv filebeat /usr/share/filebeat/bin/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# mv module /usr/share/filebeat/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# mv modules.d/ /etc/filebeat/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# cp filebeat.yml /etc/filebeat/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# chmod 750 /var/log/filebeat/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# chmod 750 /etc/filebeat/
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# chown -R root:root /usr/share/filebeat/*

最后,配置服务的初始化脚本以便于实现systemctl命令启停和开机自启动:

root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# vim /lib/systemd/system/filebeat.service

粘贴如下脚本:

[Unit]
Description=filebeat
Documentation=https://www.elastic.co/guide/en/beats/filebeat/current/index.html
Wants=userwork-online.target
After=network-online.target

[Service]
ExecStart=/usr/share/filebeat/bin/filebeat -c /etc/filebeat/filebeat.yml -path.home /usr/share/filebeat -path.config /etc/filebeat -path.data /var/lib/filebeat -path.logs /var/log/filebeat
Restart=always

[Install]
WantedBy=multi-user.target

启动服务:

root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# systemctl enable filebeat.service
Created symlink /etc/systemd/system/multi-user.target.wants/filebeat.service → /lib/systemd/system/filebeat.service.
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# service filebeat start
root@raspberrypi:~/go/src/github.com/elastic/beats/filebeat# service filebeat status

至此,我们就可以用systemctlservice命令管理filebeat了

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容