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?

コンテナがexitedになって困った時の対処方法

Posted at

コンテナがexitedになって困った話とその対処
まず以下を実行してコンテナのIDを調べる

docker ps  -a

そしてexitedになった原因を探るべくコンテナのログを調べる

docker logs {{コンテナID}}

するとこんなエラーが出ていた

initialize specified but the data directory has files in it. Aborting.

翻訳すると

initialize が指定されましたが、データ ディレクトリにファイルがあります。中止します。

なのでmysql直下のdataフォルダを削除した

それからコンテナを起動しなおすとうまく行った

参考
https://zenn.dev/sinozu/articles/8c51091af73cd1b386b8
https://qiita.com/jun_kato/items/3ae2db42ef7f1d0cca99
https://qiita.com/SyoInoue/items/41f0f40f2cb6e7605731

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?