Нужно дать доступ удаленному клиенту к mysql (для настройки репликации) mysql> grant all privileges on *.* to 'root'@'%' identified by 'pass1'; mysql> flush privileges; Так - работает. Делаю тоже самое
mysql> grant all privileges on *.* to 'repl'@'%' identified by 'pass2'; mysql> flush privileges; - так не работает
Что я делаю не так?