Tag: 数据迁移

如何在Docker容器中迁移mysql数据目录?

我有一个运行mysql-5.5主机数据卷的docker容器。 我正在升级我的容器到mysql-5.6。 我正在启动一个具有相同主机卷的新容器。 由于mysql.user表崩溃,MySQL在容器中崩溃。 [ERROR] Fatal error: Can't open and lock privilege tables: Incorrect key file for table 'user'; try to repair it 160523 12:04:13 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended 我尝试了以下来解决这个问题: root@container# mysqld –skip-grant-tables; root@container# mysql -uroot -ppassword mysql> repair table user USE_FRM; +————+——–+———-+————————————————–+ | Table | Op | Msg_type | Msg_text | […]