ansible 批量更新filebeat配置文件

流过昼夜 提交于 2021-02-06 15:38:08

一、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'






标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!