[摘要]这篇文章主要为大家详细介绍了Centos7安装mysql5.6.29的shell脚本,具有一定的参考价值,感兴趣的小伙伴们可以参考一下本文实例为大家分享了mysql5.6.29的shell脚本,供大...
这篇文章主要为大家详细介绍了Centos7安装mysql5.6.29的shell脚本,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了mysql5.6.29的shell脚本,供大家参考,具体内容如下
创建脚本mysql.sh,直接运行sh mysql.sh
#!/bin/bash
if [ -d /software ] ;then
cd /software
else
mkdir /software && cd /software
fi
#is exist command ,if not,yum install
is_exist() {
which $1
if [ $? -ne 0 ] ;then
yum -y install $1
fi
}
#dolownad the mysql install package,if exist,check the md5sum,if correct,tar;else rm and download
if [ -f mysql-5.6.29.tar.gz ] ;then
mysql_md5=`md5sum mysql-5.6.29.tar.gz
关键词:Centos7安装 mysql5.6.29 shell脚本的示例代码分享