所以我有一个非常有趣的问题。我试图重置我的MySQL密码,然后我被锁定在MySQL之外。没什么大不了的,我可以卸载MySQL吧?
错误。
我跑了:
sudo apt-get --purge remove mysql-client mysql-server mysql-common
sudo apt-get autoremove
sudo apt-get autoclean
sudo rm -rf /etc/mysql/
但是我在安装大约10分钟后遇到了这个问题:
│ Unable to set password for the MySQL "root" user │
│ │
│ An error occurred while setting the password for the MySQL administrative user. This may have happened │
│ because the account already has a password, or because of a communication problem with the MySQL server. │
│ │
│ You should check the account's password after the package installation. │
│ │
│ Please read the /usr/share/doc/mysql-server-5.5/README.Debian file for more information.
如何正确删除MySQL以便我可以重新安装它?
答案 0 :(得分:5)
您需要删除/ var / lib / mysql文件夹。
sudo apt-get remove --purge mysql-server mysql-client mysql-common
sudo rm -rf /var/lib/mysql
我之前有过类似的问题。最后一行帮助了我。我希望它对你也有所帮助。
答案 1 :(得分:4)
您只是删除配置文件。您还需要删除数据库。
这些通常存储在/var/lib/mysql
或类似的东西中。