共计 662 个字符,预计需要花费 2 分钟才能阅读完成。
在学习使用 MySQLdump 时,使用 mysqldump 备份时,遇到了下面两个错误:
[root@DB-Server backup]# ./mysql_dump_back.sh
Warning: Using a password on the command line interface can be insecure.
mysqldump: Error: Binlogging on server not active
如上所示,一个是因为我在 mysql_dump_back.sh 里面配置了登录数据库账号的密码,mysqldump 提示不安全,另外一个错误,在搜索了一些资料后,只需要在 /etc/my.cnf 里面开启 log_bin(数据库的操作日志) 功能,然后重启 mysql 即可解决问题。网上也有大把这类资料,既然碰到了也就记录一下。
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
log_bin=mysql-bin
mysqldump 备份时保持数据一致性 http://www.linuxidc.com/Linux/2017-06/144782.htm
mysqldump 备份结合 binlog 日志恢复 http://www.linuxidc.com/Linux/2017-03/141898.htm
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-08/146185.htm