diff --git a/docs/deploy/image-2.png b/docs/deploy/image-2.png new file mode 100644 index 00000000..05d5664a Binary files /dev/null and b/docs/deploy/image-2.png differ diff --git a/docs/deploy/image-3.png b/docs/deploy/image-3.png new file mode 100644 index 00000000..8e655b6d Binary files /dev/null and b/docs/deploy/image-3.png differ diff --git a/docs/deploy/image-4.png b/docs/deploy/image-4.png new file mode 100644 index 00000000..b9fa038a Binary files /dev/null and b/docs/deploy/image-4.png differ diff --git a/docs/deploy/tdengine3.md b/docs/deploy/tdengine3.md index 660de79e..4e71b4e3 100644 --- a/docs/deploy/tdengine3.md +++ b/docs/deploy/tdengine3.md @@ -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 +``` -``` \ No newline at end of file +## minio安装配置 +