Ubuntu下如何卸载Mysql数据库

MySQL卸载:
1、

sudo apt-get autoremove --purge mysql-server-5.0

2、

sudo apt-get remove mysql-server

3、

sudo apt-get autoremove mysql-server

4、

sudo apt-get remove mysql-common  //这个很重要

5、

dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P   //清除残留数据

猜你喜欢

转载自blog.csdn.net/longgeaisisi/article/details/78678230