Skip to content

Instantly share code, notes, and snippets.

@jreeme
Created July 7, 2017 13:24
Show Gist options
  • Save jreeme/0384e444706d92f31caff5aa9cbf4a41 to your computer and use it in GitHub Desktop.
Save jreeme/0384e444706d92f31caff5aa9cbf4a41 to your computer and use it in GitHub Desktop.
MySQL change root password
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'
IDENTIFIED BY 'password'
WITH GRANT OPTION;
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment