Created
November 6, 2019 03:44
-
-
Save zarza/8a23ba480ff8b8642258bff74717ea42 to your computer and use it in GitHub Desktop.
- The user specified as a definer ('root'@'localhost') does not exist
This file contains 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
mysql -u admin -p`cat /etc/psa/.psa.shadow` | |
CREATE USER 'root'@'localhost' IDENTIFIED BY ''; | |
GRANT ALL PRIVILEGES ON * . * TO 'root'@'localhost'; | |
FLUSH PRIVILEGES; | |
exit; | |
Y luego reboot. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment