Answers for "force change mysql password"

SQL
0

change mysql password from command line

ALTER USER 'root'@'localhost' IDENTIFIED BY 'New-Password';
Posted by: Guest on August-11-2020
0

mysql change password

UPDATE mysql.user SET authentication_string=PASSWORD("rootpass") WHERE User='root';
Posted by: Guest on April-21-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language