Mysql复制错误:选项'--rpl-user'是必需的

时间:2014-11-13 11:03:39

标签: mysql

我正在尝试设置从本地数据库到远程数据库的复制。我是MySQL的新手,所以我按照网站上的视频进行了操作。创建了用户,授予了在主服务器上输入的权限:

mysqlreplicate --master=repl@localhost:3306 --slave=repl@myDomain.com:3306

它给了我这个错误:

error: option '--rpl-user' is required

1 个答案:

答案 0 :(得分:0)

Per Documentation ,看起来像是必需的命令行选项。

  

- RPL-用户=

The user and password for the replication user, 
  in the format: <user>[:<password>] or <login-path>. The default is rpl:rpl.

您的命令应如下所示rpl:rpl--rpl-user命令行选项的默认值。

mysqlreplicate --master=repl@localhost:3306 --slave=repl@myDomain.com:3306 --rpl-user=rpl:rpl