文档更新
This commit is contained in:
parent
4b71f36144
commit
95de1ac2ec
BIN
docs/deploy/image-2.png
Normal file
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
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
BIN
docs/deploy/image-4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 105 KiB |
@ -120,6 +120,39 @@ systemctl enable postgresql
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
su - postgres
|
su - postgres
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Redis安装配置
|
||||||
|
|
||||||
|
```shell
|
||||||
|
yum install redis6 -y
|
||||||
|
```
|
||||||
|
|
||||||
|
### 配置文件修改
|
||||||
|
编辑文件`/etc/redis/redis.conf`,修改为
|
||||||
|

|
||||||
|
第一处修改数据文件dump位置
|
||||||
|
|
||||||
|

|
||||||
|
第二处修改redis密码
|
||||||
|
|
||||||
|

|
||||||
|
第三处修改redis监听端口
|
||||||
|
|
||||||
|
### 服务启动与自启
|
||||||
|
|
||||||
|
```shell
|
||||||
|
systemctl start redis
|
||||||
|
systemctl enable redis
|
||||||
|
```
|
||||||
|
|
||||||
|
### 防火墙配置
|
||||||
|
|
||||||
|
```shell
|
||||||
|
firewall-cmd --zone=public --add-port=6379/tcp --permanent
|
||||||
|
firewall-cmd --reload
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## minio安装配置
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user