试着

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。


当前回答

这可能有用:

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

其他回答

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

1)这对我很管用。首先,创建一个新用户。示例:用户名为foo,密码为bar

> mysql> CREATE USER 'foo'@'localhost' IDENTIFIED WITH mysql_native_password BY 'bar';

2)将下面的代码替换为用户名'foo'。

> mysql> GRANT ALL PRIVILEGES ON database_name.* TO'foo'@'localhost';

注意:database_name是你想要拥有权限的数据库。意思是所有对所有

3)以foo用户登录

mysql> mysql -u foo -p

密码:酒吧

4)确保你的初始连接从Sequelize设置为foo与pw bar。

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

我在CentOS上也有同样的问题,这为我工作了(版本:8.0.11):

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'

这招对我很管用:

mysql> FLUSH PRIVILEGES 
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES