Error: /usr/bin/mysqlcheck doesn’t support multiple contradicting commands.
February 12th, 2014 Posted in MySQL, troubleshootingMySQL 5.5对比MySQL 5.0和5.1改变还真不少,就连我以前常用的修复表命令到了5.5时代居然都不能用了。。。
/usr/bin/mysqlcheck --check --auto-repair --optimize --all-databases
一运行就给我报:
Error: /usr/bin/mysqlcheck doesn't support multiple contradicting commands.
而且这个错误在Google里面都好像没有太多的答案,最好在一个阿拉伯文的论坛里面找到了解决方案:其实只要去掉–check就好了
/usr/bin/mysqlcheck --auto-repair --optimize --all-databases
You must be logged in to post a comment.