Answers for "centos 7 change mariadb root password from the cli"

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
0

how to know the root password in mariadb mac

$(brew --prefix mysql)/bin/mysqladmin -u root password NEWPASS
Posted by: Guest on October-21-2021

Code answers related to "centos 7 change mariadb root password from the cli"

Browse Popular Code Answers by Language