摘要:
方式一: 导出 SELECT * FROM 数据库.表名 INTO OUTFILE '文件存放位置'; # [Err] 1290 - The MySQL server is running with the --secure-file-priv option so it cannot execute 阅读全文
摘要:
1、登录主数据库,进行如下操作: # 创建账号 create user 账号@localhost identified by '密码'; # 账号赋权 grant replication slave on *.* to 账号@localhost with grant option; # 刷新权限 f 阅读全文