Как удалить mysql сервер linux

How To Remove MySQL Completely from Your Linux System

MySQL is a popular open-source relational database management system. However, sometimes you may need to remove MySQL from your Linux system due to various reasons such as upgrading to a newer version, replacing it with another database system, or simply uninstalling it. In this article, we’ll show you how to remove MySQL completely from your Linux system in a safe and effective manner.

Before we begin, it is recommended to back up your data and configuration files before uninstalling MySQL. You can use the mysqldump utility to back up your data or copy the entire MySQL data directory to a safe location.

Here’s the step-by-step guide to removing MySQL from your Linux system:

Step 1: Stop MySQL Service

First of all, you need to stop MySQL service on your system.

sudo systemctl stop mysql 

This stops the MySQL service, allowing you to safely remove the database.

Step 2: Uninstall MySQL packages

First, uninstall all the MySQL packages installed on your server. Use one of the following commands as per your Linux distribution. The package names may vary based on the Operating system and installation types.

sudo apt remove mysql-server mysql-client sudo apt autoremove sudo apt autoclean 
sudo dnf remove mysql-server mysql-client 

This removes the MySQL packages and their dependencies from your system. The autoremove and autoclean commands remove unnecessary packages and clean up the package cache.

Step 3: Remove MySQL configuration and data files

Now we need to remove the MySQL data directory from the system which by default exists at /var/lib/mysql. If you didn’t find this, It may be changed to some other place, which you can find in my.cnf file with variable datadir. Delete the /var/lib/mysql directory from the system but we prefer to rename it to keep a backup of existing files.

sudo rm -rf /etc/mysql sudo rm -rf /var/lib/mysql 

This removes the MySQL configuration files and data directory. Be careful while removing these files, as they contain important data. Make sure to back up your data before removing these files.

Читайте также:  Linux get line number in file

Step 4: Verify the Removal

This following command lists all the packages installed on your system, and grep for the word ‘mysql’. If there are no MySQL packages installed, you have successfully removed MySQL from your system.

That’s it! You have now successfully removed MySQL from your Linux system. You can now install a different database system or simply enjoy a cleaner system without MySQL.

Conclusion

In conclusion, removing MySQL from your Linux system is a straightforward process, but it’s important to back up your data and follow the steps carefully to avoid any data loss. I hope this ultimate guide has been helpful in removing MySQL from your Linux system.

Источник

Completely Uninstall MySQL Server in Ubuntu

While package management in Ubuntu, as in most Linux operating systems nowadays, makes it extremely easy to install, upgrade and delete a piece of software, some software is a bit more complex in nature and contains multiple configuration folders, etc.

One such complex software is MySQL Server. Uninstalling MySQL Server does not simply amount to running ‘apt purge‘ as is done usually. There are few small steps you can follow to completely uninstall MySQL Server from your Ubuntu machines.

Backup MySQL Databases in Linux

If you do not have any database created in MySQL, you can skip this step. If you have, before you remove MySQL Server from the system, make sure you take a backup of all your databases, so that when you reinstall it on another system or want to use the database on an existing server, you can simply restore them.

Remove MySQL Server in Ubuntu

The Ubuntu packages for MySQL Server start with ‘mysql-server’ and you can use apt purge command to remove all these packages.

$ sudo apt purge mysql-server*

Remove MySQL Server in Ubuntu

As you can see, it has removed 3 packages that contain files for the server. The reason we use ‘purge‘ instead of ‘remove‘ is that the former removes the configuration files for the program as well, whereas the latter only removes the program binaries.

Читайте также:  Etc security user linux

Remove MySQL Database Files and Logs

The command ‘apt purge‘ does remove the binaries and the configuration files, however, there are some more MySQL configuration files and the database files which are not touched by any package manager.

The configuration files are present in /etc/mysql and the security keys and other related files are stored in /var/lib/mysql.

$ ls /etc/mysql $ sudo ls /var/lib/mysql

MySQL Configuration Files

Thus, these MySQL configuration files and database files need to be deleted manually.

$ sudo rm -r /etc/mysql /var/lib/mysql

If you have enabled logging for MySQL, make sure you delete the log files as well.

Remove Orphaned Packages Packages

Along with the MySQL Server packages installed by the package manager, there are some packages that are also installed as dependencies for the server. These are no longer required by the system, as the main package itself has been purged. They are also known as ‘Orphaned Packages’.

Run the following apt command to remove such packages.

Remove Packages Installed Automatically

Note that this will remove ALL orphaned packages, not only the ones orphaned by the purging of the MySQL Server. You can see in the output that MySQL Client packages are also being removed, as they are now useless without the server package.

Conclusion

We learned how to completely uninstall MySQL Server in Ubuntu in a few easy steps. Database deletions, upgrades, and installations should be handled with the utmost care, and data should be backed up from time to time, so as to prevent data-related disasters on a personal level or on an organizational level.

Thanks for reading and let us know your thoughts in the comments below!

I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

3 thoughts on “Completely Uninstall MySQL Server in Ubuntu”

Did not work because the system attempts to constantly re-install and then reports in a bad state. dpkg: warning: old mysql-server-8.0 package pre-removal script subprocess returned error exit status 1
dpkg: trying script from the new package instead .
Failed to stop mysql.service: Unit mysql.service not loaded.
invoke-rc.d: initscript mysql, action «stop» failed.
dpkg: error processing archive /var/cache/apt/archives/mysql-server-8.0_8.0.27-0ubuntu0.20.04.1_amd64.deb (—unpack):
new mysql-server-8.0 package pre-removal script subprocess returned error exit status 1
Failed to stop mysql.service: Unit mysql.service not loaded.
invoke-rc.d: initscript mysql, action «stop» failed.
Failed to start mysql.service: Unit mysql.service not found.
invoke-rc.d: initscript mysql, action «start» failed.
Unit mysql.service could not be found.
dpkg: error while cleaning up:
installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
/var/cache/apt/archives/mysql-server-8.0_8.0.27-0ubuntu0.20.04.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1) will not install any other updates on the system whilst this loop remains. Reply

Читайте также:  Как откатить обновление линукс

If the above command is not fixed, try to force the package installation using the following command.

$ sudo apt install -f OR $ sudo apt install --fix-broken

Источник

📑 Как полностью удалить MySQL из Ubuntu

Иногда бывает нужно полностью удалить MySQL из Ubuntu. Например для того, чтобы установить вместо нее MariaDB или PerconaDB. Что, впрочем, очень рекомендуется сделать.

Для этого нужно остановить сервис MySQL:

Если нужно полностью удалить MySQL из системы, то необходимо использовать следующие команды. С их помощью можно деинсталлировать MySQL server/client пакеты, удалить конфигурационные файлы MySQL, вычистить директорию данных MySQL (т.е. /var/lib/mysql), и удалить из системы пользователя mysql. То-есть вычистить все, относящееся к MySQL.

$ sudo apt-get remove --purge mysql-server mysql-client mysql-common $ sudo apt-get autoremove $ sudo apt-get autoclean

Если нужно только удалить пакеты, относящиеся к MeSQL, но оставить конфигурационные файлы и файлы данных, нужно использовать следующую последовательность команд:

$ sudo apt-get remove mysql-server mysql-client mysql-common $ sudo apt-get autoremove $ sudo apt-get autoclean
  • Шпаргалка основных команд mysql по работе с базой данных и таблицам
  • Настройка удаленного доступа MySQL и MariaDB в Linux Ubuntu
  • Процесс создания базы MySQL, нового пользователя и загрузки дампа
  • Как посмотреть всех пользователей и привилегии в MySQL
  • Проверка, восстановление и оптимизация баз MySQL
  • Установка Nginx, MariaDB и PHP-FPM на Ubuntu 16.04
  • Как полностью удалить MySQL из Ubuntu
  • Удаление всех таблиц из базы MySQL
  • Установка сервера percona
  • Установка Nginx+php5-fpm+MariaDB на Ubuntu 14.04
  • Дампы баз данных MySql — mysqldump
  • Перенос баз данных MySQL
  • Защита phpMyAdmin

Источник

Оцените статью
Adblock
detector