1044, "Access denied for user 'root'@'192.168.0.%' to database 'test'"

是因为创建这个test数据库时候没有给这个数据库授予被操作权限,所以报错,授权即可

解决:

grant all privileges on test.* TO 'root'@'%' identified by 'jenkins@123' with grant option;
flush privileges;

 

相关文章:

  • 2021-04-13
  • 2021-06-22
  • 2021-10-22
  • 2021-11-08
  • 2021-08-02
  • 2021-05-31
  • 2021-08-19
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-06
  • 2021-09-10
  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案