28
37

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DBの中身もろとも消したいときの、Mysql-server の完全削除

Posted at

MySQLもろとも完全に削除したい

どうしてこうなったかと言われると、
設定作業中に間違って MySQLテーブルのuserの中身を全て消してしまい、新しいユーザも作れず、どうにもならなくなりました。

MySQLごと再インストールすれば、データベースの中身もデフォルトに戻るかなと思ったのですが


# yum uninstall mysql 

とかだと、MySQLのデータベースの中に入っているデータは残ってしまいます。

アンインストールした上で、データを全て消す

まずは普通に、yumでアンインストール処理を実施


# yum remove mysql-server mysql-devel

その上で、データが入っているディレクトリを削除


# rm -rf /var/lib/mysql

なんだか、windowsのソフトウェアをアンインストールしたときに、変な残骸が残らないように完全消去するような話に近いですが・・・。

参考

28
37
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
28
37

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?