参照网上其它人说的使用delete指令再flush previliges;没有解决这个问题。

使用mysql的drop指令可解决此问题,,输入以下指令:

use mysql;

drop user 'xssScaner_user'@'localhost';

flush privileges;


然后再执行创建用户的指令:

create user 'xssScaner_user'@'localhost' identified by 'yinqing1';

即可创建成功:

Mysql5.6 ERROR 1396 (HY000): Operation CREATE USER failed for 'xxxx'@'localhost '问题解决

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
  • 2022-12-23
猜你喜欢
  • 2022-01-26
  • 2022-12-23
  • 2022-12-23
  • 2021-07-04
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
相关资源
相似解决方案