创建一个用户:

  create user 'oukele'@'%' identified by 'oukele'; 

提示下面所列出的信息的话,得刷新一下权限表

  The MySQL server is running with the --skip-grant-tables option so it cannot execute this st...

步骤如下:

  MySQL 新建用户并赋予权限

 

 

MySQL8 ---->

flush PRIVILEGES;
create user
'oukele'@'%' identified by 'oukele';
grant all privileges on
*.* to 'oukele'@'%';
flush PRIVILEGES;

 

相关文章:

  • 2021-12-25
  • 2022-02-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
猜你喜欢
  • 2022-03-07
  • 2021-06-09
  • 2022-01-12
  • 2021-09-24
  • 2022-02-10
  • 2022-02-10
相关资源
相似解决方案