Answers for "ubuntu mysql install and configure"

SQL
56

how to install mysql ubuntu

sudo apt update
sudo apt install mysql-server
sudo service mysql start
sudo mysql_secure_installation
sudo mysql -u root 

In mysql console:
DROP USER 'root'@'localhost';
CREATE USER 'root'@'%' IDENTIFIED BY 'YOURPASSWORD';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Posted by: Guest on January-17-2021
3

install mysql on ubuntu

sudo apt-get update
sudo apt-get install mysql-server
Posted by: Guest on July-29-2021
0

ubuntu mysql install and configure

GRANT CREATE, ALTER, DROP, INSERT, UPDATE, DELETE, SELECT, REFERENCES, RELOAD ON *.* TO 'mysqluser'@'localhost' WITH GRANT OPTION;
Posted by: Guest on May-07-2022

Code answers related to "ubuntu mysql install and configure"

Code answers related to "SQL"

Browse Popular Code Answers by Language