install mysql on ubuntu code example

Example 1: install mysql ubuntu

sudo apt install mysql-server

Example 2: install mysql ubuntu 18.04

sudo apt update
sudo apt install mysql-server
sudo mysql_secure_installation

Example 3: 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;

Example 4: how to install mysql in ubuntu 20.04

## To install mysql in Ubuntu ##
sudo apt install mysql-server

## For configuration 
sudo mysql_secure_installation

# For password type YES or y ... enter you password
# For removing user NO or n 
# For disallow login NO or n
# For remove database NO or n
# Reload table YES or y

## DONE configurations ...

## Start mysql with below command...
sudo mysql -u root -p 

# Enter password which you add in configurations
# Now you are all done...

Example 5: setup mysql ubuntu

sudo apt install mysql-server
sudo mysql_secure_installation utility

Example 6: install mysql client ubuntu

apt-get install mysql-client

Tags: