在学习使用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即可解决问题。网上也有大把这类资料,既然碰到了也就记录一下。

mysqldump: Error: Binlogging on server not active

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
log_bin=mysql-bin

相关文章:

  • 2021-07-18
  • 2022-02-14
  • 2021-07-25
  • 2021-07-20
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2022-01-27
猜你喜欢
  • 2021-12-17
  • 2021-09-12
  • 2021-12-11
  • 2022-12-23
  • 2021-09-14
  • 2022-12-23
相关资源
相似解决方案