mofify descript file

This commit is contained in:
s_jqzhang 2019-02-11 18:04:47 +08:00
parent 6e31301895
commit 405355f67a

View File

@ -48,53 +48,6 @@
`./fileserver`
# 配置自动生成 (conf/cfg.json)
```json
{
"绑定端号": "端口",
"addr": ":8080",
"集群": "集群列表例如: http://10.1.xx.2:8080,http://10.1.xx.5:8080,http://10.1.xx.60:8080,注意是字符串数组(ip必须不一样)",
"peers": ["http://10.1.xx.2:8080","http://10.1.xx.5:8080","http://10.1.xx.60:8080"],
"组号": "组号",
"group": "group1",
"refresh_interval": 120,
"是否自动重命名": "真假",
"rename_file": false,
"是否支持web上传": "真假",
"enable_web_upload": true,
"是否支持非日期路径": "真假",
"enable_custom_path": true,
"下载域名": "dowonload.web.com",
"download_domain": "",
"场景":"场景列表",
"scenes":[],
"默认场景":"",
"default_scene":"default",
"是否显示目录": "真假",
"show_dir": true,
"邮件配置":"",
"mail":{
"user":"abc@163.com",
"password":"abc",
"host":"smtp.163.com:25"
},
"告警接收邮件列表":"",
"alram_receivers":[],
"告警接收URL":"",
"alarm_url":"",
"下载是否需带token":"真假",
"download_use_token":false,
"下载token过期时间":"",
"download_token_expire":600,
"是否自动修复":"可能存在性问题(每小时一次)",
"auto_repair":true,
"文件去重算法md5可能存在冲突默认md5":"sha1|md5",
"file_sum_arithmetic":"md5"
}
```
# 命令上传
`curl -F file=@http-index-fs http://10.1.xx.60:8080/upload`
@ -157,6 +110,8 @@ go-fastdfs的文件定位与其它分布式系统不同它的寻址是直接
大家也会觉得这群无聊。
```
- 已经使用fastdfs存储的文件可以迁移到go fastdfs下么
```
答案是可以的,你担心的问题是路径改变,go fastdfs为你考虑了这一点
@ -172,6 +127,19 @@ cd fastdfs/data && find -type f |xargs -n 1 -I {} curl -F file=@data/{} -F path=
```
- 什么是集群如何用Nginx管理多集群
```
1、在go-fastdfs中一个集群就是一个group。
2、请参阅部署图
注意:配置中的 support_group_manage 参数设为true时所有的url中都自动添加组信息。
例如http://10.1.5.9:8080/group/status
默认http://10.1.5.9:8080/status
区别多了group,对应配置中的 group 参数,这样主要是为了解决一个Nginx反向代理多个group(集群)
具体请参阅部署图
```
- 如何搭建集群?
```
一、先下载已编译的可执行文件(用最新版本)