美文网首页
MySQL完全卸载重装

MySQL完全卸载重装

作者: 吾星喵 | 来源:发表于2018-10-28 11:15 被阅读6次

    我的博客,欢迎阅读 https://blog.starmeow.cn

    MySQL完全卸载重装

    sudo apt-get --purge remove mysql-server
    sudo apt-get install mysql-server
    

    结果无效,https://www.randomhacks.co.uk/mysql-job-failed-to-start-unable-to-set-root-password-cant-find-file-mysql/

    完全清理卸载干净MySQL

    首先你可以通过dpkg --get-selections | grep mysql命令罗列出你电脑上安装的和MySQL相关的软件

    sudo apt-get --purge remove mysql-server
    sudo apt-get --purge remove mysql-client
    sudo apt-get --purge remove mysql-common
    

    最后再通过下面的命令清理残余:

    apt-get autoremove
    apt-get autoclean
    rm /etc/mysql/ -R
    rm /var/lib/mysql/ -R
    

    安装

    sudo apt-get install mysql-server
    

    安装好后,所有数据都被清空。

    相关文章

      网友评论

          本文标题:MySQL完全卸载重装

          本文链接:https://www.haomeiwen.com/subject/fpeptqtx.html