在Ubuntu系統(tǒng)中安裝MariaDB數(shù)據(jù)庫(kù)的教程
MariaDB是一個(gè)開(kāi)源數(shù)據(jù)庫(kù)且100%與MySQL兼容,目標(biāo)是替代MySQL數(shù)據(jù)庫(kù)。
MariaDB的背景 :
2008年,MySQL被后來(lái)被Oracle在2010年收購(gòu)的Sun Microsystems收購(gòu)了。 最初被Sun公司的收購(gòu)由于符合項(xiàng)目的需要而受到MySQL社區(qū)的歡呼,但是這種情緒并沒(méi)有持續(xù)太久,接下來(lái)被Oracle的收購(gòu),不幸期望遠(yuǎn)遠(yuǎn)低于預(yù)期。許多MySql的開(kāi)發(fā)者離開(kāi)了Sun和Oracle公司開(kāi)始新的項(xiàng)目。在他們中間就有MySQL的創(chuàng)建者以及項(xiàng)目長(zhǎng)期技術(shù)帶頭人之一的Michael ‘Monty" Widenius。Monty和他的團(tuán)隊(duì)創(chuàng)建了MySQL的一個(gè)fork版本并且命名它為MariaDB。
本篇我們會(huì)討論如何在Ubuntu上安裝MariaDB。默認(rèn)上MariaDB的包并沒(méi)有在Ubuntu倉(cāng)庫(kù)中。要安裝MariaDB,我們首先要設(shè)置MariaDB倉(cāng)庫(kù)。
設(shè)置 MariaDB 倉(cāng)庫(kù)
$ sudo apt-get install software-properties-common $ sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db $ sudo add-apt-repository "deb http://sfo1.mirrors.digitalocean.com/mariadb/repo/10.0/ubuntu trusty main"
安裝 MariaDB :
$ sudo apt-get update $ sudo apt-get install mariadb-server
在安裝中,你會(huì)被要求設(shè)置MariaDB的root密碼。

從命令行連接到MariaDB :
linuxtechi@mail:~$ mysql -uroot -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 40 Server version: 10.0.14-MariaDB-1~trusty-log mariadb.org binary distribution Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others. Type "help;" or "\h" for help. Type "\c" to clear the current input statement. MariaDB [(none)]>
MariaDB 服務(wù)
$ sudo /etc/init.d/mysql stop $ sudo /etc/init.d/mysql start
相關(guān)文章:
1. 詳解Centos 使用YUM安裝MariaDB2. mariadb 在低配 VPS 上崩潰問(wèn)題處理方案3. Mac中MariaDB數(shù)據(jù)庫(kù)的安裝步驟4. MariaDB的安裝與配置教程5. 我是如何用2個(gè)Unix命令給MariaDB SQL提速的6. Linux安裝MariaDB數(shù)據(jù)庫(kù)的實(shí)例詳解7. MariaDB性能調(diào)優(yōu)工具mytop的使用詳解8. debian10 mariadb安裝過(guò)程詳解9. MariaDB表表達(dá)式之公用表表達(dá)式(CTE)10. Centos7 下mysql重新啟動(dòng)MariaDB篇

網(wǎng)公網(wǎng)安備