前提・実現したいこと
ここに質問の内容を詳しく書いてください。
docker を立ち上げたい
発生している問題・エラーメッセージ
いきなりdockerのmySQLエラーが出始めました。いろいろ調べて手は尽くしましたが、全く解決せずよろしければお力添えいただきたいです。
docker compose up など基本的なdcokerのコマンドを打つとmySQLエラーでたちあがらない
具体的にはターミナル内で下記が出ます。
2021-05-24T07:14:51.330187Z 10 [ERROR] InnoDB: Operating system error number 17 in a file operation. mysql_1 | 2021-05-24T07:14:51.330260Z 10 [ERROR] InnoDB: Error number 17 means 'File exists' mysql_1 | 2021-05-24T07:14:51.330277Z 10 [Note] InnoDB: Some operating system error numbers are described at http://dev.mysql.com/doc/refman/5.7/en/operating-system-error-codes.html mysql_1 | 2021-05-24T07:14:51.330302Z 10 [ERROR] InnoDB: Cannot create file './aim_cloud_development/schema_migrations.ibd' mysql_1 | 2021-05-24T07:14:51.330313Z 10 [ERROR] InnoDB: The file './aim_cloud_development/schema_migrations.ibd' already exists though the corresponding table did not exist in the InnoDB data dictionary. Have you moved InnoDB .ibd files around without using the SQL commands DISCARD TABLESPACE and IMPORT TABLESPACE, or did mysqld crash in the middle of CREATE TABLE? You can resolve the problem by removing the file './aim_cloud_development/schema_migrations.ibd' under the 'datadir' of MySQL. rails_1 | rails aborted! rails_1 | ActiveRecord::StatementInvalid: Mysql2::Error: Tablespace '`aim_cloud_development`.`schema_migrations`' exists. rails_1 | /app/bin/rails:5:in `<top (required)>' rails_1 | /app/bin/spring:10:in `require' rails_1 | /app/bin/spring:10:in `block in <top (required)>' rails_1 | /app/bin/spring:7:in `tap' rails_1 | /app/bin/spring:7:in `<top (required)>' rails_1 | rails_1 | Caused by: rails_1 | Mysql2::Error: Tablespace '`aim_cloud_development`.`schema_migrations`' exists. rails_1 | /app/bin/rails:5:in `<top (required)>' rails_1 | /app/bin/spring:10:in `require' rails_1 | /app/bin/spring:10:in `block in <top (required)>' rails_1 | /app/bin/spring:7:in `tap' rails_1 | /app/bin/spring:7:in `<top (required)>' rails_1 | Tasks: TOP => db:migrate
試したこと
- Dockerのimage volumeの削除
- './aim_cloud_development/schema_migrations.ibd'の削除
あなたの回答
tips
プレビュー