期中集群架构-第六章-ansible批量管理服务介绍====================================================================== 01. 批量管理服务知识介绍 a. ansible是一个基于Python开发的自动化运维工具 b. ansible是一个基于ssh协议实现远程管理的工具 c. ansible软件可以实现多种批量管理操作(批量系统配置.批量软件部署.批量文件拷贝.批量运行命令) saltstack
编写批量安装脚本 [root@m01 scripts]# vim install.sh for ip in $* do echo "=======start install to $ip =======" ssh .$ip 'yum install -y lrzsz' #这里安装是windows与linux互传的软件,后期可通过ansible模块批量安装软件 echo "====== stop install end with $ip =====" echo &qu