Answers for "how to give all privileges to current user in mysql using terminal in ubuntu"

SQL
25

mysql grant all privileges to a user

GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost';
Posted by: Guest on March-18-2020
5

mysql add user with all privileges

# First Login mysql shell..
sudo mysql -u root -p 
CREATE USER 'username'@'localhost' IDENTIFIED BY 'P4ssW0rd';
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost';
FLUSH PRIVILEGES;
Posted by: Guest on September-11-2020

Code answers related to "how to give all privileges to current user in mysql using terminal in ubuntu"

Code answers related to "SQL"

Browse Popular Code Answers by Language