Hey all Techgigs,
Today I am going to show you how to install and download MySQL on Ubuntu.
Follow the below easy steps:
Follow or copy the below commands in your Ubuntu terminal:
In this way, we have installed MYSQL. Now we need to configure it.
Afer successful configuration, let's test the MYSQL installation.
Today I am going to show you how to install and download MySQL on Ubuntu.
Follow the below easy steps:
1. Installation of MYSQL:
Follow or copy the below commands in your Ubuntu terminal:$ sudo apt-get update
$ sudo apt-get install mysql-server
In this way, we have installed MYSQL. Now we need to configure it.
2. Configuration:
$ mysql_secure_installation
3. Testing MYSQL:
Type the command below for testing MYSQL:
$ systemctl status mysql.service
4. Launching MYSQL:
$ /usr/bin/mysql -u root -p
Comments
Post a Comment