Skip to content

Commit

Permalink
chore: brew install mysql v9
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Oct 10, 2024
1 parent 44ca113 commit 6654185
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 30 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,5 @@ dist
.DS_Store
run
!test/ctx_register.js

.egg/
33 changes: 3 additions & 30 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,38 +21,11 @@ $ docker-compose down

假设大家使用 macOS 开发,Linux 和 Windows 环境自行参考。

### MySQL 5.7
### MySQL 9

```bash
$ brew install mysql@5.7
$ brew services start mysql
```

### MySQL 8

```bash
$ brew install mysql
$ brew services start mysql
```

如果遇到以下异常

```log
Uncaught Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client
```

需要先确认安装的 MySQL 版本,如果是 8.x,在执行时可能会报错不支持此种鉴权方式,需要改一下 MySQL 设置

```bash
# 登录数据库
mysql -u root

> use mysql;
> update user set plugin='mysql_native_password' where user='root';
> quit;

# 重启 MySQL
brew services restart mysql
brew install mysql
brew services start mysql
```

### Redis
Expand Down

0 comments on commit 6654185

Please sign in to comment.