溫馨提示×

Ubuntu下如何清空mysql數(shù)據(jù)

小新
426
2021-02-05 13:26:42
欄目: 云計算

Ubuntu下如何清空mysql數(shù)據(jù)

Ubuntu下清空mysql數(shù)據(jù)的方法:

1.打開Ubuntu系統(tǒng),進(jìn)入終端命令行。

2.輸入命令中卸載MySQL。

sudo apt-get remove mysql-common

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

3.再輸入命令清除殘留數(shù)據(jù)。

dpkg -l|grep ^rc|awk '{print$2}'|sudo xargs dpkg -P

4.查看MySQL的剩余依賴項(xiàng)。

dpkg --list|grep mysql

5.刪除剩余依賴項(xiàng),例如:

sudo apt-get autoremove --purge mysql-apt-config

0