Centos7 mysql5.7

cat > /etc/yum.repos.d/mysql-community-el7.repo<<'EOF'
[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http://mirror.tuna.tsinghua.edu.cn/mysql/yum/mysql57-community-el7/
enabled=1
gpgcheck=0
EOF

卸载
一、列出所有被安装的rpm package
rpm -qa | grep mysql

二、强制卸载相关的软件

语句:rpm -e --nodeps 软件名

实例:rpm -e --nodeps ******

你可能感兴趣的:(python,Centos,经验)