Open In App

How to Install SQL Workbench For MySQL on Linux?

MySQL Workbench is a visual database design tool that integrates SQL development, administration, database design, creation, and maintenance into a single integrated development environment for the MySQL database system. It was first released in 2014. It is owned by Oracle Corporation. It supports Windows, Linux, and Mac OS operating systems. In this article, We will know how can we install SQL Workbench on our Linux systems. 

Installing SQL Workbench on Linux:

Follow the below steps to install SQL 



Step 1: Open your browser and download SQL Workbench for your Linux system from here. You will see a screen as shown below then click on the Download button.



Step 2: After clicking on download you will get a confirmation screen, click on No thanks, just start my download on the left side of your screen.

Step 3: Open your terminal and navigate to that folder in which you have downloaded that workbench file using cd FolderName.

Step 4: Run installation command

sudo apt-get install ./fileNameOfInstallationPackage

Step 5: On your terminal update your packages using the following command.

sudo apt-get update

Step 6: Install SQL workbench community. Now, we have to install MySQL Workbench Community. For this, I have used snap. You can also install this using the following command. You can learn more about snap from here.

snap install mysql-workbench-community

That’s it, Now SQL Workbench is now installed on your Linux system. To verify You can search MySQL Workbench on your app drawer.

Output:

To run click on the icon of MySQL Workbench.

Article Tags :