I’m setting up mysql replication using xtrabackup guide How to set up a replica for replication in 6 simple steps with Percona XtraBackup - Percona XtraBackup
On Master/Source I’m running this command
mysql> GRANT REPLICATION SLAVE ON *.* TO 'root'@'12.34.56.78' IDENTIFIED BY 'asdfd34F4fg';
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IDENTIFIED BY 'asdfd34F4fg'' at line 1
How to fix it?