Answers for "mariadb make root user"

3

create database and grant user rights mariadb

create database [DB name];

CREATE USER '[DB_User_Name]'@'localhost' IDENTIFIED BY '[DB_Password]';
GRANT ALL PRIVILEGES ON [DB_Name].* TO '[DB_User_Name]'@'localhost';

show grants for 'demouser'@'localhost';

FLUSH PRIVILEGES;
Posted by: Guest on March-22-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 "mariadb make root user"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language