文档更新

This commit is contained in:
谷成伟 2024-12-09 15:11:58 +08:00
parent 4b71f36144
commit 95de1ac2ec
4 changed files with 34 additions and 1 deletions

BIN
docs/deploy/image-2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
docs/deploy/image-3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
docs/deploy/image-4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

View File

@ -120,6 +120,39 @@ systemctl enable postgresql
```shell
su - postgres
```
### Redis安装配置
```shell
yum install redis6 -y
```
### 配置文件修改
编辑文件`/etc/redis/redis.conf`,修改为
![alt text](image-2.png)
第一处修改数据文件dump位置
![alt text](image-3.png)
第二处修改redis密码
![alt text](image-4.png)
第三处修改redis监听端口
### 服务启动与自启
```shell
systemctl start redis
systemctl enable redis
```
### 防火墙配置
```shell
firewall-cmd --zone=public --add-port=6379/tcp --permanent
firewall-cmd --reload
```
```
## minio安装配置