Posted in Linux
Login Root Remote Mysql
Buatlah user root baru yang dapat login dari mana saja
create user 'root'@'%' identified by 'password';
Grant all privileges with grant option
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES;