1. Überprüfen Sie, ob MySQL installiert ist
Methode 1:
[root@localhost usr]# yum list installed mysql* Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.yun-idc.com * extras: mirror.neu.edu.cn * updates: mirrors.yun-idc.com Installed Packages MySQL-client.x86_64 5.6.27-1.el6 installed MySQL-devel.x86_64 5.6.27-1.el6 installed MySQL-server.x86_64 5.6.27-1.el6 installed [root@localhost usr]#
Methode 2 ( -i: Groß-/Kleinschreibung wird nicht beachtet ):
[root@localhost usr]# rpm -qa | grep -i mysql MySQL-server-5.6.27-1.el6.x86_64 MySQL-client-5.6.27-1.el6.x86_64 MySQL-devel-5.6.27-1.el6.x86_64 [root@localhost usr]#
2. MySQL deinstallieren
Deinstallieren 1:
[root@localhost usr]# yum remove mysql mysql-server mysql-libs compat-mysql51 [root@localhost usr]# rm -rf /var/lib/mysql [root@localhost usr]# rm /etc/my.cnf
Wenn mysql-devel installiert ist (dasselbe wie der Befehl „add“ für andere), deinstallieren Sie es wie folgt:
[root@Tony_ts_tian init.d]# yum remove mysql mysql-devel mysql-server mysql-libs compat-mysql51
Hinweis (für Beispiel):
mysql-5.5.39-1.el6.remi.x86_64
mysql-libs-5.5.39-1.el6.remi.x86_64
compat-mysql51-5.1.54-1. el6.remi.x86_64
mysql-server-5.5.39-1.el6.remi.x86_64
Deinstallieren 2{Weiter, wählen Sie eine von 1 und 2 (hier ist die Einführung):}:
[root@localhost mysql]# rpm -aq | grep -i mysql MySQL-server-5.6.27-1.el6.x86_64 MySQL-client-5.6.27-1.el6.x86_64 MySQL-devel-5.6.27-1.el6.x86_64 [root@localhost mysql]# rpm -e MySQL-server-5.6.27-1.el6.x86_64 [root@localhost mysql]# rpm -e MySQL-client-5.6.27-1.el6.x86_64 [root@localhost mysql]# rpm -e MySQL-devel-5.6.27-1.el6.x86_64 [root@localhost rc.d]# cd /var/lib/ [root@localhost lib]# rm -rf mysql/
Hinweis: Löschen Sie das MySQL-Datenbankverzeichnis (Schlüssel), sonst wird das Passwort nicht aktualisiert (Standardinstallation, wenn Sie den Installationspfad und den Linkpfad ln -s anpassen.) . Bitte löschen.)
rm -rf /var/lib/mysql
Deinstallation 3:
[root@localhost usr]# whereis mysql mysql: /usr/lib64/mysql [root@localhost usr]# rm -rf /usr/lib64/mysql
Hinweis: find / -name mysql
Hinweis: Löschen Sie alle Verzeichnisse und Dateien im Zusammenhang mit MySQL und anderen Konfigurationen und Einstellungen. Wenn ja, löschen Sie es. Sie müssen auch berücksichtigen, ob andere Software Auswirkungen darauf hat.
rm -rf /usr/lib/mysql
rm -rf /usr/share/mysql
Deinstallation 4:
[root@localhost usr]# rm –rf /usr/my.cnf [root@localhost usr]# rm -rf /root/.mysql_sercret
Deinstallation 5 (Selbststartdienst):
[root@localhost usr]# chkconfig --list | grep -i mysql [root@localhost usr]# chkconfig --del mysqld
此处删除看自己设置:mysql/mysqld
Das obige ist der detaillierte Inhalt vonMySQL – Deinstallieren Sie das MySQL-Codebeispiel vollständig unter CentOS. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!