You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Ref: https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql-- Note: `sammy` is your username, `password` is your strong password.CREATEUSER 'sammy'@'localhost' IDENTIFIED BY 'password';
Login
If you use docker, use:
mariadb -h 127.0.0.1 -P 3306 -u root -p
else, use:
mariadb -u root -p
mariadb -u sammy -p
The text was updated successfully, but these errors were encountered:
Install
Install via docker: https://mariadb.com/kb/en/installing-and-using-mariadb-via-docker/
or:
Create normal user with root permission
Login
If you use docker, use:
else, use:
The text was updated successfully, but these errors were encountered: