Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/install/install-sql/postgresql/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ psql
* 创建用户(此步骤可跳过)

```bash
# 用户名↓ # 密码↓
CREATE USER uname WITH PASSWORD 'zhenxun';
# 用户名↓ # 密码↓
CREATE USER uname WITH PASSWORD '密码请自行填写';
```

* 更改密码

```bash
# 密码↓
alter user postgres with password 'zhenxun_bot';
alter user postgres with password '你需要设置的新密码';
```

* 创建数据库
Expand Down
2 changes: 1 addition & 1 deletion docs/install/install-sql/postgresql/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Windows下安装
4.数据存储路径(没有特殊情况一般默认即可),`Next`
![_](/img/install/install_sql/install_4.png)

5.输入postgres用户的密码,例如: `zhenxun_bot`
5.输入postgres用户的密码,例如: `密码需要自行设置`
![_](/img/install/install_sql/install_5.png)

6.默认端口,`Next`
Expand Down