chnhbhndchngn 2022-02-13 08:25:04 阅读数:270
from Linux Release version Centos uninstall mysql Steps for :
[[email protected] ~]# rpm -qa| grep -i mysql
Note that it must be written here -i This makes it case insensitive , Otherwise, you may not match any results
The operation results are as follows :
The server and client are installed here
[[email protected] ~]# rpm -ev --nodeps MySQL-server
[[email protected] ~]# rpm -ev --nodeps MySQL-client
Process diagram :
No news is good news , Has been successfully unloaded .
If you are not at ease , You can check again whether the uninstallation has been successful
[[email protected] ~]# find / -name mysql
You may see a lot of results , But not all of them need to be uninstalled
Here, only those with red boxes are the files that need to be deleted , Others are other files and installation files , Deleted code is
[[email protected] ~]# rm -rf /var/lib/mysql
[[email protected] ~]# rm -rf /usr/lib64/mysql/
Here we are , Uninstall completed !
copyright:author[chnhbhndchngn],Please bring the original link to reprint, thank you. https://en.javamana.com/2022/02/202202130825024193.html