赞
踩
一、注意事项:
mysql从5.7升级到8.0是支持的,但是只支持GA版本的升级,并且要求版本为5.7.9或者更高
在升级到8.0之前,建议升级到5.7的最新版本。仅仅支持从5.7版本升级到8.0,不支持5.6版本升级到8.0
二、升级准备工作:
1,备份数据(包括当前的数据库和日志文件)
2,升级检查:mysqlcheck -u root -p --all-database --check-upgrade
3,检查分区表(不支持分区的存储引擎)select table_schema,table_name from information_schema.tables where engine not in ('innodb','ndbcluster') and create_options like '%partitioned');
如果存在记录,必须把对应表修改为innodb引擎或者把表修改为非分区的(alter table table_name engine=INNODB或alter table table_name remove partitioning);
4,在mysql数据库中,必须不存在与mysql8.0数据字典相同名称的表。select table_schema,table_name from information_schema.tables where lower(table_schema)='mysql' and lower(table_name) in (
'catalogs',
'character_sets',
'collations',
'co
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。