Skip to content

Instantly share code, notes, and snippets.

@bayadeoro
Last active August 29, 2015 14:01
Show Gist options
  • Save bayadeoro/6d087bc0f65b6be85cd1 to your computer and use it in GitHub Desktop.
Save bayadeoro/6d087bc0f65b6be85cd1 to your computer and use it in GitHub Desktop.
Error ERROR 1396 (HY000) at line 11: Operation CREATE USER failed for
Cuando queremos crear de nuevo la base de datos y da este error:
ERROR 1396 (HY000) at line 11: Operation CREATE USER failed for 'admin'@'localhost'
Se corrige:
$ mysql -u root -proot
drop user admin@localhost;
flush privileges;
exit
$ mysql -u root -proot < privileges.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment