• 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
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

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Steps to Install Percona MySQL Server on Ubuntu 18.04 LTS

    Here is Latest, Tested Steps to Install Percona MySQL Server on Ubuntu 18.04 LTS For Cloud Server, VPS and Dedicated Server.

  • How to Install WordPress : Ubuntu 16.04, Nginx, PHP7-FPM

    Here is Step by Step Guide on How to Install WordPress on Ubuntu 16.04, Nginx, PHP7-FPM, memcached & Percona MySQL 5.7 on Cloud Server or VPS.

  • Ansible Ubuntu 16.04 1 Click Install WordPress, Nginx Playbook Tutorial

    Following This Tutorial, You Will Be Able to Create Own Ansible 1 Click Install WordPress Nginx Percona MySQL Playbook For Ubuntu 16.04.

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

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
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