Skip to main content

Install MYSQL on Ubuntu

Hey all Techgigs,
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


Afer successful configuration, let's test the MYSQL 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

Popular posts from this blog

Install Sticky notes in Ubuntu 16.04

Hello, Now you can use sticky notes in Ubuntu also!! Just follow the steps given below Follow or copy the below commands in your Ubuntu terminal: Step 1: Add a repository: $ sudo add-apt-repository ppa:umang/indicator-stickynotes Step 2: Update: $ sudo apt-get update Step 3: Install Indicator stickynotes: $ sudo apt-get install indicator-stickynotes Thank you!

Difference between programmer and developer

Programmer A programmer is someone who typically writes computer programs, they are typically handed a specification or some sort of requirements, document or something, or a features list with some specific details on what needs to be implemented. And then they go off and they implement it. They're really into writing with tight code. A beautiful code that flows nicely is very elegant, readable and maintainable. That's really what they're about. And they have really deep programmer has deep knowledge about a programming language and algorithms and how to do things really well in code. And they really have that kind of a silos view about what to do is really about the code and encoding up to the program and using elegant algorithms. Typically, a programmer might, in their spare time have their own programming projects are working on. Developer A developer is kind of a little bit of a different animal, they're not into depth with the program is deep as a pr...