MariaDB是MySQL的增强版,可直接替代。 MariaDB可能是为数据库专业人员寻找一个
强大的 ,
可扩展的,
可靠的 SQL服务器的一个更好选择。 MariaDB对于MySQL有一些更新功能。使用下面的链接阅读MariaDB和MySQL之间的功能对比
本文将帮助您在使用 apt-get 包管理器在Ubuntu 14.10,14.04 LTS和12.04 LTS与其他系统上安装MariaDB 10.0。
第1步:添加 MariaDB 的 apt-get库
首先,我们需要在我们的系统中添加 MariaDB 的 apt-get 资源库。添加库之前确保你已经需要安装包也使用下面的命令添加apt-get key 的MariaDB存储库
$ sudo apt-get install software-properties-common
$ sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
现在使用以下选项按照你的Ubuntu版本之一。要检查你的Ubuntu系统版本运行 “lsb-release -a” 命令。
为Ubuntu 14.10 “utopic”
$ sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu utopic main'
为Ubuntu 14.04 “trusty”
$ sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu trusty main'
对于Ubuntu 12.04 LTS “precise”
$ sudo add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu precise main'
对于其他版本的Ubuntu
为Ubuntu的其他版本。
点击这里找到你的系统合适的存储库。
第2步:在Ubuntu上安装MariaDB
在系统中添加库后,并使用以下命令在系统上安装MariaDB。
$ sudo apt-get update
$ sudo apt-get install mariadb-server
在使用上述命令安装MariaDB程序将提示输入MariaDB的 root 帐户密码,输入两次,像下面一样
第3步:登录到MariaDB
安装完成后,您可以使用以下命令连接到MariaDB。
# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or g.
Your MariaDB connection id is 42
Server version: 10.0.15-MariaDB-1~precise-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)]>
第4步:启动/停止MariaDB服务
有些时候,我们需要停止或启动MariaDB服务。使用以下命令停止/停止它。
$ sudo /etc/init.d/mysql stop
$ sudo /etc/init.d/mysql start