0
Change MySQL / MariaDB user password
rated 0 times
[
0]
[
0]
/ comments: 0 / hits: 112
/ 7 months ago, mon, aug 6, 2018, 11:36:25
Showing a couple different ways depending on version
# For version 5.7.5 and earlier:
SET PASSWORD FOR 'rob'@'localhost' = PASSWORD('MyNewPass');
# For versions after version 5.7.5
ALTER USER 'rob'@'localhost' IDENTIFIED BY 'MyNewPass';
More From
» mysql
Comments
There are no comments for this Snippet yet
Only authorized users can post. Please sign in first, or register a free account