首页 > 数据库 > MySQL > 正文

在Ubuntu或Debian系统的服务器上卸载MySQL的方法

2024-07-24 13:07:34
字体:
来源:转载
供稿:网友

这篇文章主要介绍了在Ubuntu或Debian系统的服务器上卸载MySQL的方法,适用于Debian系的Linux系统,需要的朋友可以参考下

对于有的vps,系统默认安装了mysql。我们需要从我们的服务器、vps上卸载(移除)默认的mysql。那么如何(怎样)在ubuntu/Debian上卸载mysql?

通常情况下,下列mysql软件包会被安装到 Debian 、Ubuntu中:

mysql-client - The latest version of MySQL database client(最新版的mysql数据库客户端).

mysql-server - The latest version of MySQL database server.(最新版的mysql数据库服务端)

mysql-common - MySQL database common files(mysql数据库命令文件)

那么如何怎样在ubuntu/Debian上卸载mysql?

只需要使用 apt-get 命令 即可,如下面的命令,同时卸载 ubuntu / Debian 中的 mysql server 和 mysql client :

 

 
  1. sudo apt-get --purge remove mysql-client mysql-server mysql-common 
  2. sudo apt-get autoremove 

解释: --purge 移除所给的软件包和配置文件

remove 表示卸载软件包

autoremove 表示自动卸载软件包,以及与该软件包的依赖(软件包)

输入如下(注意软件包名字):

 

 
  1. Reading package lists... Done 
  2. Building dependency tree 
  3. Reading state information... Done 
  4. The following packages were automatically installed and are no longer required: 
  5. linux-headers-3.2.0-31-virtual linux-headers-3.2.0-31 
  6. Use 'apt-get autoremove' to remove them. 
  7. The following packages will be REMOVED: 
  8. libdbd-mysql-perl* libmysqlclient18* mysql-client* mysql-client-5.5* mysql-common* mysql-server* 
  9. mysql-server-5.5* 
  10. 0 upgraded, 0 newly installed, 7 to remove and 0 not upgraded. 
  11. After this operation, 67.5 MB disk space will be freed. 
  12. Do you want to continue [Y/n]? y 
  13. (Reading database ... 105097 files and directories currently installed.) 
  14. Removing mysql-server ... 
  15. Removing mysql-server-5.5 ... 
  16. mysql stop/waiting 
  17. Purging configuration files for mysql-server-5.5 ... 
  18. Removing mysql-client ... 
  19. Removing mysql-client-5.5 ... 
  20. Removing libdbd-mysql-perl ... 
  21. Removing libmysqlclient18 ... 
  22. Purging configuration files for libmysqlclient18 ... 
  23. Removing mysql-common ... 
  24. Purging configuration files for mysql-common ... 
  25. dpkg: warning: while removing mysql-common, directory '/etc/mysql' not empty so not removed. 
  26. Processing triggers for ureadahead ... 
  27. Processing triggers for man-db ... 
  28. Processing triggers for libc-bin ... 
  29. ldconfig deferred processing now taking place 

删除 /etc/mysql 目录,使用如下命令:

 

 
  1. sudo rm -rf /etc/mysql/ 

解释:-r 同时删除该目录下的所有子目录。 -f 表示强制删除

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表