背景交代
mysql版本:mysql Ver 14.14 Distrib 5.7.11, for Linux (x86_64) using EditLine wrapper
os:Linux version 3.13.0-24-generic ([email protected]) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #46-Ubuntu SMP
问题:
在备份数据库时报如下问题
command:
[email protected]:/home/ls# mysqldump -u root -p test > test.sql
problem:
mysqldump: Couldn‘t execute ‘SHOW VARIABLES LIKE ‘gtid\_mode‘‘: Table ‘performance_schema.session_variables‘ doesn‘t exist (1146)
网上锁了好多解决办法,什么使用“--set-gtid-grupe=off”参数等。试了都没有起到任何作用。
最后在万能的stackoverflow上找到了答案
具体的解决办法:
1)mysql_upgrade -u root -p --force #更新
2)service mysql restart #restart mysql service
3)mysqldump -u root -p test > test.sql #重新备份数据
找到了解决办法,肯定要知道是什么原因导致的该问题,要不然出去吹牛都不知道怎么吹。你说是不是呀
时间: 2024-10-10 10:16:12