Ubuntu

How to install MySQL workbench on ubuntu 20.04

MySQL workbench is a GUI tool for managing MySQL database system. It is used by database administrators, database architects and developers to visualize database design. In this article, we will see about how to install MySQL workbench on ubuntu 20.04.

MySQL workbench has many features like visual SQL development, visual DB administration, connection management, visual data modeling and even more.
Additionally database migration feature helps you to migrate to MySQL from Microsoft Access, SQLite, Sybase SQL Anywhere, Microsoft Access, Microsoft SQL Server, PostgreSQL and much more. Above all, It is cross platform application which is available for Windows, MacOS and Linux.
It is available in 3 different editions standard, enterprise and community. Community version is open source therefore we can use it for personal and non commercial purpose.

Install MySQL workbench on ubuntu 20.04

We can install MySQL workbench in 2 different ways.
1. Using apt repository
2. Manual method

Apt repository

Using this method, We can install MySQL workbench from official repository.
Step 1. Download the repo config file from the below url. It will directly take to the download page where you can see ubuntu/debian repository config file.
Browse the following url https://dev.mysql.com/downloads/repo/apt/ and Just press Download.
In the Next page click “No thanks, just start my download.” to download the package to your local directory.

Step 2. Check the file in the download directory and install using the below command. This will actually put MySQL repository urls in apt sources list so that we can install the software.
sudo apt install ./mysql-apt-config_0.8.15-1_all.deb While installing you will be prompted to choose MySQL version and it will be pre-selected. So select OK option by using down key and hit Enter.

Step 3. Update the apt cache by typing below command.
sudo apt update
Step 4. Now install MySQL workbench from the repository using following command.
sudo apt install mysql-workbench-community
Step 5. Finally, Launch workbench using application launcher.

Manual method

We can download software directly from the official website and we can install it using following method.
Step 1. Download MySQL workbench software from the below url. This is an official url, So you can directly download the file to your local directory.
Browse the following url https://dev.mysql.com/downloads/workbench/ and choose below options.
» select operating system as “Ubuntu Linux”.
» Select OS version as “Ubuntu Linux 20.04 (x86, 64-bit)”.
» Press Download.
» In the Next page click “No thanks, just start my download.” to download the package to your local directory.

Step 2. Once download completed, you can check the downloaded package and Install using below command. Moreover this command will install package along with dependencies.
sudo apt install ./mysql-workbench-community_8.0.20-1ubuntu20.04_amd64.deb
Step 3. Finally, Launch workbench using application launcher.

See also,
How to install google chrome on ubuntu 20.04
How to install Visual Studio Code on ubuntu 20.04

Disqus Comments Loading...
Share
Published by
krizna

Recent Posts

How to install Visual Studio Code on ubuntu 20.04

Visual Studio Code is a popular code editor which is lightweight and cross platform application.…

4 years ago

How to install Android Studio on ubuntu 20.04

Android Studio is a popular development software used especially for developing android applications. It is…

4 years ago

How to install google chrome on ubuntu 20.04

Google chrome is a most popular web browser developed by google. It was developed to…

4 years ago

How to install Zoom on ubuntu 20.04

Zoom is a popular video conferencing software. It is commonly used for conducting online meetings,…

4 years ago

How to install TeamViewer on ubuntu 20.04

TeamViewer is a popular application for desktop sharing and remote control. It is available for…

4 years ago

How to install Anydesk on ubuntu 20.04

Anydesk is the most popular remote desktop connectivity tool. It is available for all platforms…

4 years ago