Tag: innodb

mysql_upgrade失败 – innodb表不存在?

我正在升级我的mysql-5.5docker容器数据库到mysql-5.6docker容器。 我能够解决所有其他问题。 最后我的服务器运行在5.6。 但是,当我运行mysql_upgrade我得到以下错误。 错误: root@17aa74cbc5e2# mysql_upgrade -uroot -password Warning: Using a password on the command line interface can be insecure. Looking for 'mysql' as: mysql Looking for 'mysqlcheck' as: mysqlcheck Running 'mysqlcheck' with connection arguments: '–port=3306' '–socket=/var/run/mysqld/mysqld.sock' Warning: Using a password on the command line interface can be insecure. Running 'mysqlcheck' with connection arguments: […]

在mariadb官方泊坞窗图像上的InnoDB错误

我有一个非常奇怪的错误。 我已经能够把它归结为一个非常简单的情况,我不知道我是否发现了一个错误,或者如果我错过了一些观点。 事情是我需要一个mariadb容器,我可以使用以下命令完美运行它: docker run -e MYSQL_ROOT_PASSWORD=my-secret-pw mariadb 但是,它与以下docker-compose.yml文件失败: wordpress_db: image: mariadb environment: – MYSQL_ROOT_PASSWORD=foo 它包括: wordpress_db_1 | 2016-01-11 14:33:25 140183257745344 [Note] InnoDB: The InnoDB memory heap is disabled 我可以清楚地认识到的第一个信息是: wordpress_db_1 | InnoDB: No valid checkpoint found. (你可以在post末尾看到完整的输出) 这不会发生,如果我切换MySQL的mariadb。 谁能帮我? 谢谢! 输出: Starting miqueladell_wordpress_db_1 Attaching to miqueladell_wordpress_db_1 wordpress_db_1 | 2016-01-11 14:33:25 140183257745344 [Note] mysqld (mysqld […]