Last active
August 29, 2015 14:01
-
-
Save bayadeoro/6d087bc0f65b6be85cd1 to your computer and use it in GitHub Desktop.
Error ERROR 1396 (HY000) at line 11: Operation CREATE USER failed for
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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