卡饭网 > ubuntu > 正文

如何在Ubuntu 14.04 LTS上安装MariaDB

来源:本站整理 作者:梦在深巷 时间:2016-07-19 22:44:41

 要安装MariaDB,我们首先要设置MariaDB仓库。

  设置 MariaDB 仓库

如何在Ubuntu 14.04 LTS上安装MariaDB

安装 MariaDB :

$ sudo apt-get update

$ sudo apt-get install mariadb-server

在安装中,你会被要求设置MariaDB的root密码。

如何在Ubuntu 14.04 LTS上安装MariaDB

从命令行连接到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

相关推荐