12
12

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.

/mysql/init.d:/docker-entrypoint-initdb.dが実行されない。

Last updated at Posted at 2019-04-26

docker-composeに
- ./mysql/init.d:/docker-entrypoint-initdb.d
こんな感じで書いたらinit.dディレクトリにある.sqlとか.shとか実行してくれるらしいので試して見たところ実行された感じがしなかった。

  mysql:
    image: mysql:5.6
    ports:
    - 3306:3306
    environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=message
    - MYSQL_USER=user
    - MYSQL_PASSWORD=user
    volumes:
    - ./mysql/init.d:/docker-entrypoint-initdb.d
    - dbdata:/var/lib/mysql

なので一旦コンテナを全部削除して再度buildし直したら別のエラーが出た
$ docker-compose up --build を実行したら別のエラーが出た

[ERROR] Plugin 'InnoDB' init function returned error.
[ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
[ERROR] Unknown/unsupported storage engine: InnoDB
[ERROR] Aborting

以下やったこと

# とりあえずコンテナを全部止める
$ docker-compose down

$ docker volume ls
# たくさんのVolumeが出てきた、エラーでストレージがなんとかかんとか言ってるので全部削除
$ sudo docker volume rm $(sudo docker volume ls -qf dangling=true)

$ docker-compose up --build を実行したら起動しました。
init.dディレクトリに入れておいたファイルも実行されてた。
ソース修正しながら何度も起動したり停止したりを繰り返してたので何処かのタイミングでデータがおかしくなっていたのかもしれない。
一旦全部消してみるは大切だな〜

12
12
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
12
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?