Answers for "how to set user and password mariaDB"

3

create user mariadb

CREATE USER 'user1'@localhost IDENTIFIED BY 'password1';
Posted by: Guest on December-19-2020
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 set user and password mariaDB"

Browse Popular Code Answers by Language