Answers for "how to allow a user to log into mysql server on ubuntu"

SQL
1

login mysql ubuntu

mysql -u root -p
Posted by: Guest on February-24-2021
0

how to login to mysql as normal user in ubuntu

CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';

GRANT ALL PRIVILEGES ON database_name.* TO 'newuser'@'localhost';
Posted by: Guest on August-23-2020

Code answers related to "how to allow a user to log into mysql server on ubuntu"

Code answers related to "SQL"

Browse Popular Code Answers by Language