運維部署:使用ansbile批量部署zabbix agent5.0的指令碼
阿新 • • 發佈:2021-07-14
使用ansbile批量部署zabbix agent5.0的指令碼之前需要的操作:
1.zabbix的server端:
填寫ssh-copy-id 客戶端ip
輸入密碼
2.確保yum源是可以用,最好確保有本地源還有網路源可用
3.在ansible的配置檔案/etc/ansible/hosts中,新增主機到對應的主機組內
4.確保zabbix的server端和client的firewalld,iptables和selinux狀態,若是防火牆開啟,那就新增zabbix的埠操作如下:
firewall-cmd --permanent --add-port=10050/tcp
firewall-cmd --reload
firewall-cmd --list-port
要是配置的是iptables
iptables -I INPUT 35 -p tcp -m tcp --dport 10050 -m comment --comment "zabbix_agentd listen " -j ACCEPT
serviceiptablessave