摘要:
新建备份用户新建定时备份用户和权限(localhost)use mysql;insert into user(Host,User,Password) values("localhost","backupuser",password("123456"));flush privileges;grant all privileges on db_name.* to backupuser@localhost identified by '123456';flush privileges;grant RELOAD, SUPER, 阅读全文