• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » How to Install MySQL 8 on Debian 10 Buster

By Abhishek Ghosh August 12, 2019 8:40 am Updated on August 12, 2019

How to Install MySQL 8 on Debian 10 Buster

Advertisement

Debian Buster (Debian 10) is the latest release with MariaDB as default fork of MySQL in their repositories. We will install MySQL 8 in this guide. Debian 10 buster includes 40% updated software packages, such as Apache 2.4, BIND DNS Server 9.11, PHP 7.3, Python 3 3, Ruby 2.5, MariaDB 10.3 and so on. Ubuntu is based on a snapshot of Debian and naturally, they are similar in many ways. Ubuntu is considered a better choice for beginners, and Debian a better choice for experts.

Generally, we prefer Percona MySQL, however the steps for installing Percona MySQL is slightly different.

SSH into your server, as the root user. Create a new user :

Advertisement

---

Vim
1
adduser abhishek

Run this command to add your new user to the sudo group :

Vim
1
usermod -aG sudo abhishek

exit from the real root account and SSH as that user :

Vim
1
ssh abhishek@your_server_ip

Run below commands to upgrade the current packages to the latest versions :

Vim
1
2
sudo apt update
sudo apt upgrade

MySQL team release the official MySQL PPA for Debian Linux. You can download and install the package on your Debian system. You can browse to get the latest :

Vim
1
https://dev.mysql.com/downloads/repo/apt/

Run these commands :

Vim
1
2
3
cd ~
wget http://repo.mysql.com/mysql-apt-config_0.8.13-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb

How to Install MySQL 8 on Debian 10 Buster

During the installation, there will be prompt to select MySQL version to install. Select the MySQL 8.0 option to install. After you have selected the version, you need to change the configuration, use the following command :

Vim
1
sudo dpkg-reconfigure mysql-apt-config

We can perform apt-pinning by creating a file :

Vim
1
nano /etc/apt/preferences.d/00mysql.pref

This will be the content :

Vim
1
2
3
Package: mysql*
Pin: origin "repo.mysql.com"
Pin-Priority: 1001

Pin-Priority: 1001 is for holding the exact version. The above will prioritize the packages from that repo higher than the official Debian updates. Otherwise, apt will ignore the new version. You can confirm this by running apt-cache policy mysql-server. Here is the official documentation for apt pinning. This is not what easy to understand without spending time but it can lead to situation which will force to read various Q&A like this one.

Run the following commands to install MySQL :

Vim
1
2
sudo apt update
sudo apt install mysql-server

MySQL 8 provides an extended password security option. Go with this option from prompt. Make sure that MySQL up and running :

Vim
1
sudo systemctl restart mysql.service

Run the below command to secure installation :

Vim
1
sudo mysql_secure_installation

Next, follow our guide on Steps to Install Percona MySQL Server on Ubuntu 18.04 LTS starting from where we have shown to run how to login to MySQL using mysql -u root -p command. MySQL has some difference with Percona MySQL.

Tagged With debian 10 install mysql-server , mysql server 8 linux deb , installer mysql debian buster , installer mysql buster , how to install mysql server on ubuntu buster , debian buster package minimum mysql8 , debian buster mysql , debian buster install mysql alter , debian buster install mysql , mysql-server buster

This Article Has Been Shared 360 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to How to Install MySQL 8 on Debian 10 Buster

  • Why Cheap Dedicated Server is Good Over Cloud Server Now

    Dedicated Servers Starts From as Low as 10 Euro or Lesser Now. Cheap Dedicated Server is Good Over Cloud Server Now Because of Many Problems.

  • Install Apache Drill on Ubuntu 16.04 LTS Single Cloud Server

    Drill is SQL Query Engine for Hadoop, NoSQL, Cloud Storage. Here is How to Install Apache Drill on Ubuntu 16.04 LTS Single Cloud Server.

  • Ondřej Surý’s PPA For Ubuntu 18.04 LTS LAMP, LEMP : Current Status

    Before Upgrade, We Need to Check Resources, Incompatibilities and Needed Changes in Settings. Here is Current Status of Ondřej Surý’s PPA For Ubuntu 18.04 LTS For Setup of LAMP, LEMP Server.

  • How to Install or Renew SSL Cert on Ubuntu 18.04, Apache 2.4 (GeoTrust/RapidSSL/Comodo)

    Here Are Detailed Steps & Commands on How to Install SSL Cert on Ubuntu 18.04, Apache 2.4. SSL Cert Provider Can Be GeoTrust, RapidSSL, Comodo Like CA.

  • Analyzing Unexpected Shutdown of Ubuntu Cloud Server

    Unexpected Shutdown May Be Warning of Deeper Complex Issues. Here is Some Basics on Analyzing Unexpected Shutdown of Ubuntu Cloud Server from SSH.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • What is Configuration Management February 5, 2023
  • What is ChatGPT? February 3, 2023
  • Zebronics Pixaplay 16 : Entry Level Movie Projector Review February 2, 2023
  • What is Voice User Interface (VUI) January 31, 2023
  • Proxy Server: Design Pattern in Programming January 30, 2023

About This Article

Cite this article as: Abhishek Ghosh, "How to Install MySQL 8 on Debian 10 Buster," in The Customize Windows, August 12, 2019, February 5, 2023, https://thecustomizewindows.com/2019/08/how-to-install-mysql-8-on-debian-10-buster/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT