一、filebeat准备工作:
1、prod-tomcat 为生产组,使用ansible -ping 可以通
2、生成filebeat配置文件
3、如果执行不成功 ,注意双引号单引号替换
二、下发替换配置文件ansible prod-tomcat -S -R root -m copy -a 'src=/etc/ansible/file/filebeat.yml dest=/etc/elk/filebeat/filebeat.yml mode=600 owner=root group=root'
三、kill掉filebeat进程ansible prod-tomcat -S -R root -m shell -a 'pkill filebeat'
四、后台启动filebeat进程
ansible task -m shell -a “chdir=/usr/local/filebeat nohup ./filebeat -e -c filebeat.yml > /dev/null 2>&1 &”
五、查看后台进程ansible prod-tomcat -S -R root -m shell -a 'ps aux | grep filebeat | grep -v grep'
来源:oschina
链接:https://my.oschina.net/u/4321917/blog/4948393