1 Star 2 Fork 1

伊长空/Centos7_Mysql5.7自动化安装脚本

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
unstall_mysql.sh 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
伊长空 提交于 2022-03-19 09:33 . 上传shell文件
#!/bin/bash
MYSQL_HOME='/usr/local'
if [[ -n $(ps -ef |grep mysql|grep -v grep|grep -v sh) ]];then
ps -ef |grep mysql|grep -v grep|grep -v sh|awk '{print $2}'|xargs kill -9
fi
echo "mysql process kill"
if [[ -n $(find /etc -name "my.cnf") ]];then
rm -rf $(find /etc -name "my.cnf")
fi
if [[ -n $(find /etc -name "mysqld") ]];then
rm -rf $(find /etc -name "mysqld")
fi
echo "/etc file delette"
if [[ -n $(find $MYSQL_HOME -name "*mysql*") ]];then
rm -rf $(find $MYSQL_HOME -name "*mysql*")
fi
if [[ $(tail -n 1 /etc/profile) =~ $MYSQL_HOME/mysql/bin ]];then
sed -i '$d' /etc/profile
fi
echo "/etc/profile del"
if [[ -n $(cat /etc/passwd |grep mysql) ]];then
userdel mysql
fi
echo "user mysql del"
if [[ -n $(chkconfig --list |grep mysql) ]];then
chkconfig --del mysqld
fi
echo "chkconfig mysql del"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/yichangkong/Centos7_Mysql5.7_AutoInstallShell.git
git@gitee.com:yichangkong/Centos7_Mysql5.7_AutoInstallShell.git
yichangkong
Centos7_Mysql5.7_AutoInstallShell
Centos7_Mysql5.7自动化安装脚本
master

搜索帮助