Completely Uninstall MySQL 5.7 on CentOS 7 [Test Successful]
Method 1: 1. Check MySQL installation rpm -qa|grep -i mysql 2. Stop MySQL service before uninstalling rpm -ev –nodeps mysql-community-release-el7-5.noarch rpm -ev –nodeps mysql-community-common-5.6.38-2.el7.x86_64 rpm -ev –nodeps mysql-community-client-5.6.38-2.el7.x86_64 rpm -ev –nodeps mysql-community-libs-5.6.38-2.el7.x86_64 rpm -ev –nodeps community-server-5.6.38-2.el7.x86_64 After executing the command, execute again rpm -qa|grep -i mysql to find that it has been uninstalled. Or directly … Read more