最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Linux下卸載MySQL數(shù)據(jù)庫(kù)

 更新時(shí)間:2017年06月02日 11:15:51   作者:瀟湘隱者  
如何在Linux平臺(tái)卸載MySQL呢?這篇文章主要介紹了Linux下卸載MySQL數(shù)據(jù)庫(kù)的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

如何在Linux下卸載MySQL數(shù)據(jù)庫(kù)呢? 下面總結(jié)、整理了一下Linux平臺(tái)下卸載MySQL的方法。 MySQL的安裝主要有三種方式:二進(jìn)制包安裝(Using Generic Binaries)、RPM包安裝、源碼安裝。對(duì)應(yīng)不同的安裝方式,卸載的步驟有些不同。文章中如有不足或不對(duì)的地方,敬請(qǐng)指出或補(bǔ)充!

RPM包安裝方式的MySQL卸載

1、檢查是否安裝了MySQL組件。

[root@DB-Server init.d]# rpm -qa | grep -i mysql
MySQL-devel-5.6.23-1.linux_glibc2.5
MySQL-client-5.6.23-1.linux_glibc2.5 
MySQL-server-5.6.23-1.linux_glibc2.5

如上所示,說(shuō)明安裝了MySQL 5.6.23這個(gè)版本的client、server、devel三個(gè)組件。

2、卸載前關(guān)閉MySQL服務(wù)

2.1 方法1

[root@DB-Server init.d]# service mysql status
 MySQL running (25673)[ OK ]
[root@DB-Server init.d]# service mysql stop
 Shutting down MySQL..[ OK ]
[root@DB-Server init.d]# service mysql status
 MySQL is not running[FAILED]

2.2 方法2

[root@DB-Server init.d]# ./mysql status
 MySQL running (26215)[ OK ]
[root@DB-Server init.d]# ./mysql stop
 Shutting down MySQL..[ OK ]
[root@DB-Server init.d]# ./mysql status
 MySQL is not running[FAILED]
[root@DB-Server init.d]# 

[root@DB-Server init.d]# chkconfig --list | grep -i mysql
mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off 
[root@DB-Server init.d]# 

3. 收集MySQL對(duì)應(yīng)的文件夾信息

[root@DB-Server init.d]# whereis mysql

mysql: /usr/bin/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz

最好實(shí)用find命令查看MySQL數(shù)據(jù)庫(kù)相關(guān)的文件,方便后面徹底刪除MySQL。

[root@DB-Server init.d]# find / -name mysql
/etc/rc.d/init.d/mysql
/etc/logrotate.d/mysql
/var/lock/subsys/mysql
/var/lib/mysql
/var/lib/mysql/mysql
/usr/include/mysql
/usr/include/mysql/mysql
/usr/bin/mysql
/usr/share/mysql
/usr/lib64/mysql

4、卸載刪除MySQL各類(lèi)組件

[root@DB-Server init.d]# 
[root@DB-Server init.d]# rpm -ev MySQL-devel-5.6.23-1.linux_glibc2.5
[root@DB-Server init.d]# rpm -ev MySQL-server-5.6.23-1.linux_glibc2.5
You have new mail in /var/spool/mail/root
[root@DB-Server init.d]# rpm -ev MySQL-client-5.6.23-1.linux_glibc2.5
[root@DB-Server init.d]#

5、刪除MySQL對(duì)應(yīng)的文件夾

檢查各個(gè)MySQL文件夾是否清理刪除干凈。

[root@DB-Server init.d]# whereis mysql
mysql:
[root@DB-Server init.d]# find / -name mysql
/var/lib/mysql
/var/lib/mysql/mysql
/usr/lib64/mysql
[root@DB-Server init.d]# rm -rf /var/lib/mysql
[root@DB-Server init.d]# rm -rf /var/lib/mysql/mysql
[root@DB-Server init.d]# rm -rf /usr/lib64/mysql
[root@DB-Server init.d]# 

6、刪除mysql用戶(hù)及用戶(hù)組

如果有必要,刪除mysql用戶(hù)以及mysql用戶(hù)組。

[root@DB-Server ~]# more /etc/passwd | grep mysql
mysql:x:101:501::/home/mysql:/bin/bash
[root@DB-Server ~]# more /etc/shadow | grep mysql
mysql:!!:16496::::::
[root@DB-Server ~]# more /etc/group | grep mysql
mysql:x:501:
[root@DB-Server ~]# userdel mysql
[root@DB-Server ~]# groupdel mysql
groupdel: group mysql does not exist
[root@DB-Server ~]# 

7、確認(rèn)MySQL是否卸載刪除

[root@DB-Server init.d]# rpm -qa | grep -i mysql

二進(jìn)制包/源碼安裝方式的MySQL卸載

如果是采用二進(jìn)制包安裝的MySQL,那么你用下面命令是找不到任何MySQL組件的。所以如果你不知道MySQL的安裝方式,千萬(wàn)不要用下面命令來(lái)判別是否安裝了MySQL

[root@DB-Server init.d]# rpm -qa | grep -i mysql

1、檢查MySQL服務(wù)并關(guān)閉服務(wù)進(jìn)程。

首先通過(guò)進(jìn)程查看是否有MySQL的服務(wù)的狀態(tài), 如下所示,MySQL服務(wù)是啟動(dòng)的。

[root@DB-Server init.d]# ps -ef | grep mysql
root   4752 4302 0 22:55 pts/1  00:00:00 more /etc/init.d/mysql.server
root   7176   1 0 23:23 pts/1  00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/DB-Server.localdomain.pid
mysql   7269 7176 15 23:23 pts/1  00:00:01 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/DB-Server.localdomain.err --pid-file=/usr/local/mysql/data/DB-Server.localdomain.pid
root   7321 4302 0 23:23 pts/1  00:00:00 grep mysql
[root@DB-Server init.d]# /etc/init.d/mysql.server status
MySQL running (7269)[ OK ]
[root@DB-Server init.d]# /etc/init.d/mysql.server stop
Shutting down MySQL..[ OK ]
[root@DB-Server init.d]# /etc/init.d/mysql.server status
MySQL is not running[FAILED]
[root@DB-Server init.d]# 


2、查找MySQL的安裝目錄并徹底刪除

[root@DB-Server init.d]# whereis mysql
 mysql: /usr/local/mysql
 [root@DB-Server init.d]# find / -name mysql
 /var/spool/mail/mysql
 /usr/local/mysql-5.7.5-m15-linux-glibc2.5-x86_64/include/mysql
 /usr/local/mysql-5.7.5-m15-linux-glibc2.5-x86_64/bin/mysql
 /usr/local/mysql-5.7.5-m15-linux-glibc2.5-x86_64/data/mysql
 /usr/local/mysql 


[root@DB-Server init.d]# rm -rf /usr/local/mysql-5.7.5-m15-linux-glibc2.5-x86_64/ 
[root@DB-Server init.d]# rm -rf /usr/local/ 
[root@DB-Server init.d]# rm -rf /var/spool/mail/mysql 
[root@DB-Server init.d]# 

3、刪除一些配置文件配置文件一般有/etc/my.cnf 或/etc/init.d/mysql.server,視具體安裝配置情況而定。

4、刪除MySQL用戶(hù)以及用戶(hù)組

[root@DB-Server ~]# id mysql 
uid=101(mysql) gid=501(mysql) groups=501(mysql) context=root:system_r:unconfined_t:SystemLow-SystemHigh 
[root@DB-Server ~]# userdel mysql 

參考資料:Linux下徹底卸載mysql詳解

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Mysql主鍵相關(guān)的sql語(yǔ)句集錦

    Mysql主鍵相關(guān)的sql語(yǔ)句集錦

    本文主要搜集總結(jié)了一些和mysql主鍵相關(guān)的sql語(yǔ)句,包括增加主鍵或者更改表的列為主鍵之類(lèi)的sql語(yǔ)句,希望對(duì)大家能有所幫助
    2014-08-08
  • MySQL SQL 語(yǔ)法參考

    MySQL SQL 語(yǔ)法參考

    MySQL SQL 語(yǔ)法參考...
    2006-12-12
  • MySQL5.6免安裝版環(huán)境配置圖文教程

    MySQL5.6免安裝版環(huán)境配置圖文教程

    這篇文章主要為大家詳細(xì)介紹了MySQL免安裝版環(huán)境配置圖文教程,很實(shí)用,感興趣的小伙伴們可以參考一下
    2016-05-05
  • mysql中find_in_set()函數(shù)用法及自定義增強(qiáng)函數(shù)

    mysql中find_in_set()函數(shù)用法及自定義增強(qiáng)函數(shù)

    MySQL 中的 FIND_IN_SET 函數(shù)用于在逗號(hào)分隔的字符串列表中查找指定字符串的位置,本文就來(lái)介紹一下mysql中find_in_set()函數(shù)用法及自定義增強(qiáng)函數(shù)
    2024-08-08
  • Linux下安裝mysql-5.6.12-linux-glibc2.5-x86_64.tar.gz

    Linux下安裝mysql-5.6.12-linux-glibc2.5-x86_64.tar.gz

    這篇文章主要介紹了Linux下安裝mysql-5.6.12-linux-glibc2.5-x86_64.tar.gz的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下
    2016-09-09
  • mysql 8.0.12 解壓版安裝教程 個(gè)人親測(cè)!

    mysql 8.0.12 解壓版安裝教程 個(gè)人親測(cè)!

    這篇文章主要為大家詳細(xì)介紹了mysql 8.0.12 解壓版安裝教程,步驟簡(jiǎn)單,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-08-08
  • mysql如何讓自增id歸0解決方案

    mysql如何讓自增id歸0解決方案

    數(shù)據(jù)庫(kù)的Id自增越來(lái)越大,要讓自增重新從1開(kāi)始:那么就用下面的方法吧
    2012-11-11
  • 服務(wù)器上的mysql實(shí)現(xiàn)讀取sql文件

    服務(wù)器上的mysql實(shí)現(xiàn)讀取sql文件

    這篇文章主要介紹了服務(wù)器上的mysql實(shí)現(xiàn)讀取sql文件方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-03-03
  • MySQL判斷空值的三種方法

    MySQL判斷空值的三種方法

    在創(chuàng)建表時(shí),可以指定的列是否可以不包含值,如果在一個(gè)列不包含值,則其稱(chēng)其為空值NULL,NULL一個(gè)特殊值,代表缺失的值或者不適用的情況,表示未知數(shù)據(jù),本文給大家介紹了MySQL判斷空值的三種方法,需要的朋友可以參考下
    2024-03-03
  • mysql 數(shù)據(jù)插入優(yōu)化方法之concurrent_insert

    mysql 數(shù)據(jù)插入優(yōu)化方法之concurrent_insert

    在MyISAM里讀寫(xiě)操作是串行的,但當(dāng)對(duì)同一個(gè)表進(jìn)行查詢(xún)和插入操作時(shí),為了降低鎖競(jìng)爭(zhēng)的頻率,根據(jù)concurrent_insert的設(shè)置,MyISAM是可以并行處理查詢(xún)和插入的
    2021-07-07

最新評(píng)論

宝鸡市| 巢湖市| 开平市| 永康市| 田阳县| 福海县| 望江县| 和平县| 甘肃省| 乳源| 沭阳县| 宜黄县| 治县。| 时尚| 交口县| 延寿县| 辽中县| 陈巴尔虎旗| 龙里县| 博湖县| 白玉县| 贺州市| 万年县| 磐石市| 根河市| 福安市| 双城市| 乌鲁木齐县| 柞水县| 北碚区| 封开县| 集安市| 潼南县| 巢湖市| 万山特区| 苍山县| 东乡族自治县| 五华县| 广平县| 临清市| 甘谷县|