试着

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服务器。

其他回答

从MySQL 8开始,您不再可以(隐式地)使用GRANT命令创建用户。用CREATE USER代替,后面跟着GRANT语句:

mysql> CREATE USER 'root'@'%' IDENTIFIED BY 'PASSWORD';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES;

请注意WITH GRANT OPTION的安全风险,请参阅:

授予数据库的所有权限

用sudo编译mysql

sudo mysql

这可能有用:

grant all on dbtest.* to 'dbuser'@'%' identified by 'mysql_password';

1. 授予的权限

授予mysql>的所有权限。以授予选项“根”@“%”;

mysql> FLUSH PRIVILEGES

2. 检查用户表:

Mysql >使用Mysql

Mysql > select host,user from user

3.修改配置文件

Mysql默认绑定ip:127.0.0.1,如果我们要远程访问服务,只需删除配置

#Modify the configuration file
vi /usr/local/etc/my.cnf

#Comment out the ip-address option
[mysqld]
# Only allow connections from localhost
#bind-address = 127.0.0.1

4.最后重新启动服务

重启mysql

对于那些已经对创建用户'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服务器。