试着
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
得到
错误1064(42000):你有一个错误的SQL语法;查看手册
对应于你的MySQL服务器版本,正确的语法使用'IDENTIFIED BY 'root' WITH GRANT OPTION'在第一行。
注意:在以前的版本中尝试时,相同的工作。
也试过
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
得到
错误1410(42000):不允许使用GRANT创建用户
MySQL(8.0.11.0)用户名/密码为root/root。
对于那些已经对创建用户'root'@'localhost'感到困惑的人,当你已经在服务器机器上有一个root帐户时,请记住,你的'root'@'localhost'和'root'@'your_remote_ip'是mysql服务器中两个不同的用户(相同的用户名,但不同的范围)。因此,创建一个带有your_remote_ip后缀的新用户实际上会创建一个新的有效的根用户,您可以使用该用户从远程机器访问mysql服务器。
例如,如果您使用root从IP为10.154.10.241的远程机器连接到mysql服务器,并且您希望为远程root帐户设置一个密码,该密码为'Abcdef123!@#',下面是你需要遵循的步骤:
On your mysql server machine, do mysql -u root -p, then enter your password for root to login.
Once in mysql> session, do this to create root user for the remote scope:
mysql> CREATE USER 'root'@'10.154.10.241' IDENTIFIED BY 'Abcdef123!@#';
After the Query OK message, do this to grant the newly created root user all privileges:
mysql> GRANT ALL ON *.* TO 'root'@'10.154.10.241';
And then:
FLUSH PRIVILEGES;
Restart the mysqld service:
sudo service mysqld restart
Confirm that the server has successfully restarted:
sudo service mysqld status
如果上面的步骤没有任何错误地执行,那么您现在可以使用root从远程机器访问mysql服务器。