我在我的localhost上安装了MySQL.如果我遇到mysql问题而又想重新安装它会怎么样?我丢失了现有的数据库吗?
解决方法:
不,重新安装mysql-server不会删除你的数据库文件,只删除mysql-server的包文件.重新安装服务器后,您将能够访问您的文件(数据库).
要清除并安装mysql-server:
sudo apt-get purge mysql-server
sudo apt-get install mysql-server
如果要删除数据库,则必须先删除它,然后再删除mysql.要彻底删除数据库,请在mysql提示符下键入:
drop database <database_name>
我找到了删除数据库文件的另一种方法,但我不确定这是否是一种删除数据库的简洁方法,所以请用一点盐来处理它:
从a question on *开始:
It(The location of the database files) is installation specific, but if you’ve /var/lib/mysql , then:
- MyISAM tables will be stored in individual files in /var/lib/mysql/databasename/
- InnoDB resides in /var/lib/mysql/ibdata (unless you’ve used the innodb_per_table setting, in which case it’s stored much like for MyISAM tables)
因此,请检查这两个位置中数据库的位置,并删除数据库的目录(需要超级用户权限才能读取和删除).
>另见:Similar question on Unix & Linux