• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

  • 00:41 systemctl status mariadb
  • 01:01 apt purge "mariadb*" -y
  • 01:16 apt autoremove -y
  • 01:26 systemctl status mariadb
5694

To Completely Deleting MariaDb from ubuntu 19.04

Procedure to Deleting MariaDb

Let's check the status and version of MariaDB by executing the following command.

root@linuxhelp:~# systemctl status mariadb
● mariadb.service - MariaDB 10.3.13 database server
   Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
   Active: active (running) since Thu 2019-05-16 16:39:01 IST; 1 weeks 5 days ago
     Docs: man:mysqld(8)
           https://mariadb.com/kb/en/library/systemd/

Remove the MariaDB package from the system using the purge command.

root@linuxhelp:~# apt purge "mariadb*" -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'mariadb-rocksdb-engine-10.2' for glob 'mariadb*'
Note, selecting 'mariadb-rocksdb-engine-10.3' for glob 'mariadb*'
Note, selecting 'mariadb-test' for glob 'mariadb*'
Note, selecting 'mariadb-test-data-10.0' for glob 'mariadb*'
Note, selecting 'mariadb-test-data' for glob 'mariadb*'
Note, selecting 'mariadb-plugin-cracklib-password-check' for glob 'mariadb*'
Note, selecting 'mariadb-test-5.5' for glob 'mariadb*'
Note, selecting 'mariadb-common' for glob 'mariadb*'
Note, selecting 'mariadb-plugin-connect' for glob 'mariadb*'
Note, selecting 'mariadb-server-core-5.5' for glob 'mariadb*'
Note, selecting 'mariadb-server-5.1' for glob 'mariadb*'
Note, selecting 'mariadb-server-5.2' for glob 'mariadb*'
Note, selecting 'mariadb-server-5.3' for glob 'mariadb*'
Note, selecting 'mariadb-server-5.5' for glob 'mariadb*'
Note, selecting 'mariadb-tokudb-engine-5.5' for glob 'mariadb*'
Note, selecting 'mariadb-server-core-10.0' for glob 'mariadb*'
Note, selecting 'mariadb-server-core-10.1' for glob 'mariadb*'
Note, selecting 'mariadb-server-core-10.2' for glob 'mariadb*'
Note, selecting 'mariadb-server-core-10.3' for glob 'mariadb*'
Note, selecting 'mariadb-connect-engine-10.0' for glob 'mariadb*'
Note, selecting 'mariadb-connect-engine-10.1' for glob 'mariadb*'
Note, selecting 'mariadb-galera-server' for glob 'mariadb*'
.
**Select yes to remove all the MariaDB databases from the system**
![snap1](https://assets.linuxhelp.com/scr/95125185449afc298a6e4b9dd7b0b59a.png)
.
.
.
Purging configuration files for mariadb-server-10.3 (1:10.3.13-2) ...
Processing triggers for systemd (240-6ubuntu5) ...

Run the autoremove command to completely delete the configuration files.

root@linuxhelp:~# apt autoremove -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  galera-3 libaio1 libconfig-inifiles-perl libdbd-mysql-perl libdbi-perl libreadline5 libterm-readkey-perl socat
0 upgraded, 0 newly installed, 8 to remove and 93 not upgraded.
After this operation, 6,789 kB disk space will be freed.
(Reading database ... 145868 files and directories currently installed.)
Removing galera-3 (25.3.25-1) ...
Removing libaio1:amd64 (0.3.111-1) ...
Removing libconfig-inifiles-perl (3.000001-1) ...
Removing libdbd-mysql-perl:amd64 (4.050-2) ...
Removing libdbi-perl:amd64 (1.642-1) ...
Removing libreadline5:amd64 (5.2+dfsg-3build2) ...
Removing libterm-readkey-perl (2.38-1) ...
Removing socat (1.7.3.2-2ubuntu2) ...
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for libc-bin (2.29-0ubuntu2) ...

Check the status of MariaDB service.

root@linuxhelp:~# systemctl status mariadb
Unit mariadb.service could not be found.

With this, the method to delete the MariaDB server package on ubuntu 19.04 comes to end.

Tags:
charmi
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What does purge command do in MariaDB?

A

purge removes old and unneeded data in MariaDB.

Q

Is it possible to regain deleted objects using purge in MariaDB?

A

Yes, it is not possible to regain deleted objects in MariaDB as it is gone forever.

Q

What does apt purge do in MariaDB?

A

Purge is identical to remove except that packages are removed and purged(configuration files are deleted too) in MariaDB

Q

What does autoremove command do in MariaDB?
Autoremove is used to remove the packages that were automatically installed to satisfy the dependencies for other packages In MariaDB

A

Autoremove is used to remove the packages that were automatically installed to satisfy the dependencies for other packages In MariaDB

Q

What is Purge in MariaDB?

A

Data purging is deleting the data that you no longer want In MariaDB database.

Related Tutorials in How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

Related Tutorials in How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

Related Forums in How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

Related News in How to Completely Delete MariaDB Server 10.3v on Ubuntu 19.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help David Lopez Guillen ?
Ayuda urgente instale SSL para servidor Opensuse y ahora no funciona tengo servicio web

hola segui este tutorial para tener un certificado ssl y ahora no se ve mi app en la red, espero alguien pueda ayudarme, tengo M9oodle en3.5 en un servidor open suse y ahora no funciona por favor ayuda.

https://www.linuxhelp.com/how-to-create-ssl-certificate-in-opensuse

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.