Skip to content

Commit

Permalink
Merge pull request #383 from shiyuanjack/patch-3
Browse files Browse the repository at this point in the history
增加Ubuntu环境下的数据库部署(修改上一条PR)
  • Loading branch information
CodingCattwo authored Sep 26, 2021
2 parents 588a4ba + 10b64bf commit b1fe9d7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/WeBASE/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,22 @@ mysql -utest -p123456 -h localhost -P 3306
mysql > create database webasenodemanager;
```

#### ④ Ubuntu安装mysql数据库

- 以root用户执行命令

```
apt-get install software-properties-common
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe'
sudo apt-get update
sudo apt install mysql-server-5.6
sudo apt install mysql-client-5.6
```
- 执行mysql --version命令,若显示如下则安装成功
```
mysql Ver 14.14 Distrib 5.6.16, for debian-linux-gnu (x86_64) using EditLine wrapper
```

<span id="python3"></span>
### 3. Python部署

Expand Down

0 comments on commit b1fe9d7

Please sign in to comment.