Answers for "create user mariadb"

3

create user mariadb

CREATE USER 'user1'@localhost IDENTIFIED BY 'password1';
Posted by: Guest on December-19-2020
1

mariadb alter user host

UPDATE mysql.user SET Host='%' WHERE Host='localhost' AND User='username';
FLUSH PRIVILEGES;
Posted by: Guest on November-27-2020

Browse Popular Code Answers by Language