4
0

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 3 years have passed since last update.

ubuntuでmysqlを消そうと思ったら消えなかった話

Posted at

はじめに

皆さんこんにちは.今回はmysqlを消そうと思ったら消せなかった話を書こうと思います.しかし,この記事もメモ的な感じで書いていくので宜しくお願いします.

ことの顚末

①WordPressを導入しようと思って導入されていたmysqlの構成をすっかり忘れてしまったので入れ直そうと思った!

が,しかし,なにをapt-get xxx なにでインストールしたか忘れた!

②とりあえず定番のやつで消してみよう.

#apt-get remove mysql

消えない...

#apt-get remove mysql-server

消えない...

#apt-get remove mariadb-server

消えない...
え...俺は一体なにでインストールしたんだ...

③そうだ!パッケージを調べよう

#apt list --installed

このコマンドを使うことでインストールされているパッケージを調べることができます!
ちなみにこんな感じでした.

mysql-client-5.7/bionic-updates,bionic-security,now 5.7.32-0ubuntu0.18.04.1 amd64 [installed,auto-removable]
mysql-client-core-5.7/bionic-updates,bionic-security,now 5.7.32-0ubuntu0.18.04.1 amd64 [installed,auto-removable]
mysql-common/bionic,bionic,now 5.8+1.0.4 all [installed,auto-removable]
mysql-server-5.7/bionic-updates,bionic-security,now 5.7.32-0ubuntu0.18.04.1 amd64 [installed,auto-removable]
mysql-server-core-5.7/bionic-updates,bionic-security,now 5.7.32-0ubuntu0.18.04.1 amd64 [installed,auto-removable]

みみみ...見えるぞ!

④それでは消しましょう!

#apt-get remove --purge remove mysql-server-5.7

皆さん!こんな感じでやると消すことができますので困った時にはぜひやってみてください
以上です.

4
0
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
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?