Answers for "how to change MariaDB passsword?"

1

change password of user mariadb

UPDATE mysql.user SET Password=PASSWORD('New-Password') WHERE User='DB-UserName' AND Host='localhost';
Posted by: Guest on June-14-2020

Code answers related to "how to change MariaDB passsword?"

Browse Popular Code Answers by Language