MySQLでrootに外部から接続する用のhostsを追加する

普通rootユーザーではやらんと思うけど・・・

Grant_privだけ「ALL PRIVILEGES」でやってもNなので後で書き換えます。

GRANT ALL PRIVILEGES ON *.* TO 'root'@'xxx.xxx.xxx.xxx/255.255.255.xxx' ;
update user set Grant_priv = 'Y' where Host = 'xxx.xxx.xxx.xxx/255.255.255.xxx' and User = 'root' ;
flush privileges;