摘要: 新建备份用户新建定时备份用户和权限(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, 阅读全文
posted @ 2012-12-07 23:18 scige 阅读(398) 评论(0) 推荐(0) 编辑