上一篇中,因为使用参数强制启动了mysql服务,所以需要使用mysqldump对数据进行备份
但是备份过程中报错如下:
[root@test11g ~]# mysqldump -uroot -proot -h 192.168.100.141 --all-database > all.sql
mysqldump: Couldn't execute 'SET OPTION SQL_QUOTE_SHOW_CREATE=1': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_QUOTE_SHOW_CREATE=1' at line 1 (1064)
检查发现是mysqldump工具版本的问题:
默认使用的是系统自带的
[root@test11g ~]# which mysqldump
/usr/bin/mysqldump
使用新版本的备份
[root@test11g ~]# /tol/mysql/bin/mysqldump -uroot -proot -h 192.168.100.141 --database live_koo mysql > all.sql
Warning: Using a password on the command line interface can be insecure.
Warning: Using unique option prefix database instead of databases is deprecated and will be removed in a future release. Please use the full name instead.
但是备份过程中报错如下:
[root@test11g ~]# mysqldump -uroot -proot -h 192.168.100.141 --all-database > all.sql
mysqldump: Couldn't execute 'SET OPTION SQL_QUOTE_SHOW_CREATE=1': You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_QUOTE_SHOW_CREATE=1' at line 1 (1064)
检查发现是mysqldump工具版本的问题:
默认使用的是系统自带的
[root@test11g ~]# which mysqldump
/usr/bin/mysqldump
使用新版本的备份
[root@test11g ~]# /tol/mysql/bin/mysqldump -uroot -proot -h 192.168.100.141 --database live_koo mysql > all.sql
Warning: Using a password on the command line interface can be insecure.
Warning: Using unique option prefix database instead of databases is deprecated and will be removed in a future release. Please use the full name instead.
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/23249684/viewspace-1386984/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/23249684/viewspace-1386984/