develop.md 921 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 开发机安装

Joe 刚刚入职 EMP 公司,现在他需要在新领到的开发机上安装 MySQL 或 MariaDB(MySQL 的分支) ,下列说法不正确的是:

M
Mars Liu 已提交
5 6 7 8 9
<hr/>

点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
10

M
Mars Liu 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
## 答案

MySQL 需要超级用户 root,windows 的超级用户为 administrator ,所以 windows 上无法安装 MySQL。

## 选项

### Mac

在 Mac 上可以用 Homebrew 安装。

### FreeBSD

在 FreeBSD 上,可以用 ports 安装。

### Windows

在 windows 上,可以下载安装包进行安装。

### CentOS

在 CentOS 上可以通过

```shell
yum install mariadb-server
```

安装。

### Debian

Debian 或 ubuntu 环境可以通过

```shell
apt install mariadb-server
```

安装。