我不打算让 root 用户可以远程登录。于是创建一个新用户,然后授权可以远程登录。但原来的 grant all privileges ……语句不能用,而是分成了两步,选创建用户,然后再授权IP地址访问:
create user 'xx'@'%' identified by 'password';
grant all privileges on *.* to 'xx'@'%';
我不打算让 root 用户可以远程登录。于是创建一个新用户,然后授权可以远程登录。但原来的 grant all privileges ……语句不能用,而是分成了两步,选创建用户,然后再授权IP地址访问:
create user 'xx'@'%' identified by 'password';
grant all privileges on *.* to 'xx'@'%';
本文永久地址:http://www.huanghaiping.com/article/78.html
本文出自 黄海平博客 ,转载时请注明出处及相应链接。