登陆以后运行以下命令,给予远程访问客户端权限..
grant all on *.* to 'remote'@'xx.xx.xx.xx' identified by 'password';
flush privileges;
remote表示用户名.
'xx.xx.xx.xx' 远程ip地址
password表示远程登陆密码.
grant all on *.* to 'remote'@'xx.xx.xx.xx' identified by 'password';
flush privileges;
remote表示用户名.
'xx.xx.xx.xx' 远程ip地址
password表示远程登陆密码.