Skip to content

Instantly share code, notes, and snippets.

@zarza
Created November 6, 2019 03:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zarza/8a23ba480ff8b8642258bff74717ea42 to your computer and use it in GitHub Desktop.
Save zarza/8a23ba480ff8b8642258bff74717ea42 to your computer and use it in GitHub Desktop.
- The user specified as a definer ('root'@'localhost') does not exist
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