如何在 Ubuntu 14.04 LTS 上安装 MariaDB
MariaDB 是一个开源数据库且 100%与 MySQL 兼容,目标是替代 MySQL 数据库。
MariaDB 的背景
2008 年,MySQL 被后来被 Oracle 在 2010 年收购的 Sun Microsystems 收购了。 最初被 Sun 公司的收购由于符合项目的需要而受到 MySQL 社区的欢呼,但是这种情绪并没有持续太久,接下来被 Oracle 的收购,不幸期望远远低于预期。许多 MySql 的开发者离开了 Sun 和 Oracle 公司开始新的项目。在他们中间就有 MySQL 的创建者以及项目长期技术带头人之一的 Michael ‘Monty’ Widenius 。Monty 和他的团队创建了 MySQL 的一个 fork 版本并且命名它为 MariaDB 。
本篇我们会讨论如何在 Ubuntu 上安装 MariaDB。默认上 MariaDB 的包并没有在 Ubuntu 仓库中。要安装 MariaDB,我们首先要设置 MariaDB 仓库。
设置 MariaDB 仓库
$ 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
在安装中,你会被要求设置 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 服务
$ sudo /etc/init.d/mysql stop
$ sudo /etc/init.d/mysql start
延伸阅读:
暂无内容!
评论列表 (0条):
加载更多评论 Loading...