1. 程式人生 > >ubuntu16.04徹底卸載mysql5.7

ubuntu16.04徹底卸載mysql5.7

6.0 卸載mysql https 提示 service found 原來 密碼 bsp

轉載自:https://blog.csdn.net/yinjianxiang/article/details/76861719

首先命令行中進入管理員賬戶,sudo su 然後輸入密碼

刪除mysql:  apt-get remove mysql-*

然後清理殘留的數據

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

然後執行會彈出對話框,選擇no保留原來的數據密碼文件,yes 刪除

然後檢查mysql 是不是在運行:  service mysql status

會提示:loaded: not-found(Reason:No such file or directory)

    Active: inactive(dead)

ubuntu16.04徹底卸載mysql5.7