方法一
通过ssh直接执行
#!/usr/bin/bash
#mysql install 1
#by aolishuai
while read ip
do
{
#yum
ssh root@$ip "rm -rf /etc/yum.repos.d/*"
ssh root@$ip "wget ftp://192.168.176.3/yumrepo/centos7.repo -P /etc/yum.repos.d/"
ssh root@$ip "wget ftp://192.168.176.3/yumrepo/mysql57.repo -p /etc/yum.repos.d/"
#scp -r centos7.repo root@$ip:/etc/yum.repos.d/
#Firewalld & selinux
ssh root@$ip "systemctl stop firewalld; systemctl disable firewalld"
ssh root@$ip "setenforce 0; sed -ri '/^SELINUX/c\SELINUX=disabled /etc/selinux/config"
#ntp
ssh root@$ip "yum -y install chrony"
ssh root@$ip "sed -ri '/3.centos/a\server 192.168.176.4 iburst' /etc/chrony.conf"
ssh root@$ip "systemctl start chronyd; systemctl enable chronyd"