How to Install mariaDB server on Ubuntu 19.04!
MariaDB is a relational database management system. It is an open source software and intended to remain free. It is released under the GNU general public license. It is written in C, C++, Perl, bash for the Linux, Windows and the Mac operating system. Latest stable released version is 10.4.8. It is developed by MariaDB Corporation.
Here, in this article, we are going to learn how to installed successfully mariaDB server on Ubuntu 19.04 operating system. Steps are discussed below -
Step - 1 : To install mariadb 10.4.8 in ubuntu we need to add the mariadb ripository to the system. To do so, we need to install software-properties-common if missing.
sudo apt-get install software-properties-common
sudo apt-get install software-properties-common
Step - 2 : Import the MariaDB GPG key to the system
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8
Step - 3 : After the importing of GPG key, next add the apt repository to the Ubuntu 19.04 server
sudo add-apt-repository "deb [arch=amd64,arm64,ppc64el] http://mariadb.mirror.liquidtelecom.com/repo/10.4/ubuntu $(lsb_release -cs) main"
Step - 4 : Update the system
Sudo apt-get update
Step - 5 : Install mariaDB
sudo apt -y install mariadb-server mariadb-client
sudo apt-get install mariadb-serverNow, mariaDB server is in your System.
Image courtesy :
https://www.google.com/search?q=mariadb&client=ubuntu&hs=bjD&channel=fs&sxsrf=ACYBGNQiChsWFe_WdY2jM5lTzw95MJGt_A:1568794848327&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiGqKOd-NnkAhXN7nMBHcmRCu0Q_AUIEigC&biw=1296&bih=630#imgrc=Tn3nkNJ_jlr0yM:
Information courtesy :
https://en.wikipedia.org/wiki/MariaDB
No comments: