日本語のみで絞り込む

2017/1/31 -I need to create a user with REPLICATION SLAVE privilege for each database. When I use the command: GRANT REPLICATION SLAVE ON `mydb`.* ...

2024/2/12 -I'm setting up mysql replication using xtrabackup guide How to set up a replica for replication in 6 simple steps with Percona XtraBackup ...

2016/5/26 -(In passing: I think I would have preferred GRANT REPLICATION SLAVE ON my_db_name.* TO 'slave_user'@'%.my-domain.com'; , but that is an error, ...

2018/10/4 -Can you just issue the GRANT REPLICATION SLAVE on each specific table you want to replicate: mysql1> GRANT REPLICATION SLAVE ON mydatabse.

This article consolidates information from several sources into the format I use to setup MySQL Master/Master Replication. The beauty of Linux and ope...

To grant this account the privileges required for replication, use the GRANT statement. ... replication, that account needs only the REPLICATION SLAVE privilege.

2013/11/8 -GRANT REPLICATION SLAVE ON {object_type} TO {user}@'{access_network}' IDENTIFIED BY '{password}';. 特徴的な部分を説明します。 REPLICATION ...

2018/3/5 -Since the REPLICATION SLAVE privileges are global and can not be assigned to a particular database, they must be specified globally in the ...

GRANT REPLICATION SLAVE ON database_name.* TO 'user'@'host';. 当然,在执行此操作之前,请确保 ...

The REPLICATE CLIENT privilege allows the user to execute the SHOW MASTER STATUS and the SHOW SLAVE STATUS statements. In this SQL statement, the user account ...