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

[ Mac ] mysqlを5系から8系にバージョンアップする時に発生するエラーの解決

Posted at

mysqlを 5.?.? → 8.0.19 バージョンにアップデートする時に発生するエラーが厄介すぎる!

brew uninstall mysql
でアンインストールしてはそれに関するファイルを全部消して、
brew install mysql
で、もう一度再インストールしても error

##開発環境

Mac OS X
10.15.4

今回入れるmysql
Ver 8.0.19 for osx10.15 on x86_64 (Homebrew)
です

##目標
mysql.server start
を実行したときにSUCCESSさせる

##解決策
結論からいうと、

5系のmysql(プロセス)が邪魔している
です
参考:(https://qiita.com/YamKenta/items/a33499a7db7946a43381)

それでは行きます
動いてるプロセスがあるか確認
ps ax | grep mysql

ここで、あった場合は選択してkillしてください
例えば、
777 ~~mysql@5.3

こんな風に出てたら
kill 777
としたら消せます

これで全て5系のプロセスを消したら、もう一度
mysql.server start

SUCCESSがでたら完了

これでならなければ、
mysqlをuninstallして、
関係するファイルを全て消してください
(ここは割愛します。調べたらすぐ出てくるんで頑張ってください!)

以上です!

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