1、Tracker基本配置

  1. # is this config file disabled
  2. # false for enabled
  3. # true for disabled
  4. disabled=false
  1. # bind an address of this host
  2. # empty for bind all addresses of this host
  3. bind_addr=10.16.123.132
  1. # the tracker server pfort
  2. port=22122
  1. # connect timeout in seconds
  2. # default value is 30s
  3. connect_timeout=30
  1. # network timeout in seconds
  2. # default value is 30s
  3. network_timeout=60
  1. # the base path to store data and log files
  2. base_path=/home/openpf/app/fdfs407/base-g1
  1. # max concurrent connections this server supported
  2. max_connections=1024
  1. # accept thread count
  2. # default value is 1
  3. # since V4.07
  4. accept_threads=1
  1. # work thread count, should <= max_connections
  2. # default value is 4
  3. # since V2.00
  4. work_threads=4
  1. # the method of selecting group to upload files
  2. # 0: round robin
  3. # 1: specify group
  4. # 2: load balance, select the max free space group to upload file
  5. store_lookup=2
  1. # which group to upload file
  2. # when store_lookup set to 1, must set store_group to the group name
  3. store_group=group2
  1. # which storage server to upload file
  2. # 0: round robin (default)
  3. # 1: the first server order by ip address
  4. # 2: the first server order by priority (the minimal)
  5. store_server=0
  1. # which path(means disk or mount point) of the storage server to upload file
  2. # 0: round robin
  3. # 2: load balance, select the max free space path to upload file
  4. store_path=0
  1. # which storage server to download file
  2. # 0: round robin (default)
  3. # 1: the source storage server which the current file uploaded to
  4. download_server=0
  1. # reserved storage space for system or other applications.
  2. # if the free(available) space of any stoarge server in 
  3. # a group <= reserved_storage_space, 
  4. # no file can be uploaded to this group.
  5. # bytes unit can be one of follows:
  6. ### G or g for gigabyte(GB)
  7. ### M or m for megabyte(MB)
  8. ### K or k for kilobyte(KB)
  9. ### no unit for byte(B)
  10. ### XX.XX% as ratio such as reserved_storage_space = 10%
  11. reserved_storage_space = 10%
  1. #standard log level as syslog, case insensitive, value list:
  2. ### emerg for emergency
  3. ### alert
  4. ### crit for critical
  5. ### error
  6. ### warn for warning
  7. ### notice
  8. ### info
  9. ### debug
  10. log_level=info
  1. #unix group name to run this program, 
  2. #not set (empty) means run by the group of current user
  3. run_by_group=
  1. #unix username to run this program,
  2. #not set (empty) means run by current user
  3. run_by_user=
  1. # allow_hosts can ocur more than once, host can be hostname or ip address,
  2. # "*" means match all ip addresses, can use range like this: 10.0.1.[1-15,20] or
  3. # host[01-08,20-25].domain.com, for example:
  4. # allow_hosts=10.0.1.[1-15,20]
  5. # allow_hosts=host[01-08,20-25].domain.com
  6. allow_hosts=*
  1. # default value is true
  2. storage_ip_changed_auto_adjust = true
  1. # check storage server alive interval seconds
  2. check_active_interval = 120
  1. # thread stack size, should >= 64KB
  2. # default value is 64KB
  3. thread_stack_size = 64KB

二、同步

  1. # storage sync file max delay seconds
  2. # default value is 86400 seconds (one day)
  3. # since V2.00
  4. storage_sync_file_max_delay = 86400
  1. # the max time of storage sync a file
  2. # default value is 300 seconds
  3. # since V2.00
  4. storage_sync_file_max_time = 300
  1. # sync log buff to disk every interval seconds
  2. # default value is 10 seconds
  3. sync_log_buff_interval = 10

3、trunk和slot

  1. # if use a trunk file to store several small files
  2. # default value is false
  3. # since V3.00
  4. use_trunk_file = false 
  1. # the min slot size, should <= 4KB
  2. # default value is 256 bytes
  3. # since V3.00
  4. slot_min_size = 256
  1. # the max slot size, should > slot_min_size
  2. # store the upload file to trunk file when it's size <=  this value
  3. # default value is 16MB
  4. # since V3.00
  5. slot_max_size = 16MB
  1. # the trunk file size, should >= 4MB
  2. # default value is 64MB
  3. # since V3.00
  4. trunk_file_size = 64MB
  1. # if create trunk file advancely
  2. # default value is false
  3. # since V3.06
  4. trunk_create_file_advance = false
  1. # the time base to create trunk file
  2. # the time format: HH:MM
  3. # default value is 02:00
  4. # since V3.06
  5. trunk_create_file_time_base = 02:00
  1. # the interval of create trunk file, unit: second
  2. # default value is 38400 (one day)
  3. # since V3.06
  4. trunk_create_file_interval = 86400
  1. # the threshold to create trunk file
  2. # when the free trunk file size less than the threshold, will create 
  3. # the trunk files
  4. # default value is 0
  5. # since V3.06
  6. trunk_create_file_space_threshold = 20G
  1. # if check trunk space occupying when loading trunk free spaces
  2. # the occupied spaces will be ignored
  3. # default value is false
  4. # since V3.09
  5. # NOTICE: set this parameter to true will slow the loading of trunk spaces 
  6. # when startup. you should set this parameter to true when neccessary.
  7. trunk_init_check_occupying = false
  1. # if ignore storage_trunk.dat, reload from trunk binlog
  2. # default value is false
  3. # since V3.10
  4. # set to true once for version upgrade when your version less than V3.10
  5. trunk_init_reload_from_binlog = false

4、HTTP相关

  1. # HTTP port on this tracker server
  2. http.server_port=8080
  1. # check storage HTTP server alive interval seconds
  2. # <= 0 for never check
  3. # default value is 30
  4. http.check_alive_interval=30
  1. # check storage HTTP server alive type, values are:
  2. #   tcp : connect to the storge server with HTTP port only, 
  3. #        do not request and get response
  4. #   http: storage check alive url must return http status 200
  5. # default value is tcp
  6. http.check_alive_type=tcp
  7. # check storage HTTP server alive uri/url
  8. # NOTE: storage embed HTTP server support uri: /status.html
  9. http.check_alive_uri=/status.html
  1. # is http disabled
  2. # false for enabled
  3. # true for disabled
  4. http.disabled=false
  1. #include http.conf

1、Storage基本配置

  1. # is this config file disabled
  2. # false for enabled
  3. # true for disabled
  4. disabled=false
  1. # the name of the group this storage server belongs to
  2. group_name=group1
  1. # bind an address of this host
  2. # empty for bind all addresses of this host
  3. bind_addr=10.16.125.32
  1. # if bind an address of this host when connect to other servers 
  2. # (this storage server as a client)
  3. # true for binding the address configed by above parameter: "bind_addr"
  4. # false for binding any address of this host
  5. client_bind=true
  1. # the storage server port
  2. port=21000
  1. # connect timeout in seconds
  2. # default value is 30s
  3. connect_timeout=30
  1. # network timeout in seconds
  2. # default value is 30s
  3. network_timeout=60
  1. # heart beat interval in seconds
  2. heart_beat_interval=30
  1. # disk usage report interval in seconds
  2. stat_report_interval=60
  1. # the base path to store data and log files
  2. base_path=/home/openpf/app/fdfs407/base-g1
  1. # max concurrent connections the server supported
  2. # default value is 256
  3. # more max_connections means more memory will be used
  4. max_connections=1024
  1. # the buff size to recv / send data
  2. # this parameter must more than 8KB
  3. # default value is 64KB
  4. # since V2.00
  5. buff_size = 256KB
  1. # accept thread count
  2. # default value is 1
  3. # since V4.07
  4. accept_threads=1
  1. # work thread count, should <= max_connections
  2. # work thread deal network io
  3. # default value is 4
  4. # since V2.00
  5. work_threads=8
  1. # set keep_alive to 1 to enable persistent connection with FastDHT servers
  2. # default value is 0 (short connection)
  3. keep_alive=0
  1. # namespace for storing file indexes (key-value pairs)
  2. # this item must be set when check_file_duplicate is true / on
  3. key_namespace=FastDFS
  1. # if check file duplicate, when set to true, use FastDHT to store file indexes
  2. # 1 or yes: need check
  3. # 0 or no: do not check
  4. # default value is 0
  5. check_file_duplicate=0
  1. # the NIC alias prefix, such as eth in Linux, you can see it by ifconfig -a
  2. # multi aliases split by comma. empty value means auto set by OS type
  3. # default values is empty
  4. if_alias_prefix=
  1. # the priority as a source server for uploading file.
  2. # the lower this value, the higher its uploading priority.
  3. # default value is 10
  4. upload_priority=10
  1. # thread stack size, should >= 512KB
  2. # default value is 512KB
  3. thread_stack_size=512KB
  1. # default value is true
  2. storage_ip_changed_auto_adjust = true
  1. # check storage server alive interval seconds
  2. check_active_interval = 120
  1. # thread stack size, should >= 64KB
  2. # default value is 64KB
  3. thread_stack_size = 64KB
  1. # tracker_server can ocur more than once, and tracker_server format is "host:port", host can be hostname or ip address
  2. tracker_server=10.16.139.2:22122
  3. tracker_server=10.16.139.2:22123
  1. #standard log level as syslog, case insensitive, value list:
  2. ### emerg for emergency
  3. ### alert
  4. ### crit for critical
  5. ### error
  6. ### warn for warning
  7. ### notice
  8. ### info
  9. ### debug
  10. log_level=info
  1. # allow_hosts can ocur more than once, host can be hostname or ip address,
  2. # "*" means match all ip addresses, can use range like this: 10.0.1.[1-15,20] or
  3. # host[01-08,20-25].domain.com, for example:
  4. # allow_hosts=10.0.1.[1-15,20]
  5. # allow_hosts=host[01-08,20-25].domain.com
  6. allow_hosts=*
  1. # file signature method for check file duplicate
  2. ## hash: four 32 bits hash code
  3. ## md5: MD5 signature
  4. # default value is hash
  5. # since V4.01
  6. file_signature_method=hash
  1. # if use connection pool
  2. # default value is false
  3. # since V4.05
  4. use_connection_pool = false
  1. # connections whose the idle time exceeds this time will be closed
  2. # unit: second
  3. # default value is 3600
  4. # since V4.05
  5. connection_pool_max_idle_time = 3600
  1. # the mode of the files distributed to the data path
  2. # 0: round robin(default)
  3. # 1: random, distributted by hash code
  4. file_distribute_path_mode=0
  1. # valid when file_distribute_to_path is set to 0 (round robin), 
  2. # when the written file count reaches this number, then rotate to next path
  3. # default value is 100
  4. file_distribute_rotate_count=100
  1. # path(disk or mount point) count, default value is 1
  2. store_path_count=1
  1. # store_path#, based 0, if store_path0 not exists, it's value is base_path
  2. # the paths must be exist
  3. store_path0=/home/openpf/app/fdfs407/data
  1. # subdir_count  * subdir_count directories will be auto created under each 
  2. # store_path (disk), value can be 1 to 256, default value is 256
  3. subdir_count_per_path=256

二、IO

  1. # if disk read / write separated
  2. ##  false for mixed read and write
  3. ##  true for separated read and write
  4. # default value is true
  5. # since V2.00
  6. disk_rw_separated = true
  1. # disk reader thread count per store base path
  2. # for mixed read / write, this parameter can be 0
  3. # default value is 1
  4. # since V2.00
  5. disk_reader_threads = 1
  1. # disk writer thread count per store base path
  2. # for mixed read / write, this parameter can be 0
  3. # default value is 1
  4. # since V2.00
  5. disk_writer_threads = 1

3、同步

  1. # after sync a file, usleep milliseconds
  2. # 0 for sync successively (never call usleep)
  3. sync_interval=0
  1. # when no entry to sync, try read binlog again after X milliseconds
  2. # must > 0, default value is 200ms
  3. sync_wait_msec=50
  1. # storage sync start time of a day, time format: Hour:Minute
  2. # Hour from 0 to 23, Minute from 0 to 59
  3. sync_start_time=00:00
  1. # storage sync end time of a day, time format: Hour:Minute
  2. # Hour from 0 to 23, Minute from 0 to 59
  3. sync_end_time=23:59
  1. # write to the mark file after sync N files
  2. # default value is 500
  3. write_mark_file_freq=500
  1. # call fsync to disk when write big file
  2. # 0: never call fsync
  3. # other: call fsync when written bytes >= this bytes
  4. # default value is 0 (never call fsync)
  5. fsync_after_written_bytes=0
  1. # sync log buff to disk every interval seconds
  2. # must > 0, default value is 10 seconds
  3. sync_log_buff_interval=10
  1. # sync binlog buff / cache to disk every interval seconds
  2. # default value is 60 seconds
  3. sync_binlog_buff_interval=10
  1. # sync storage stat info to disk every interval seconds
  2. # default value is 300 seconds
  3. sync_stat_file_interval=300

4、HTTP相关

  1. # use the ip address of this storage server if domain_name is empty,
  2. # else this domain name will ocur in the url redirected by the tracker server
  3. http.domain_name=
  1. # the port of the web server on this storage server
  2. http.server_port=8888
  1. # is http disabled
  2. # false for enabled
  3. # true for disabled
  4. http.disabled=false
  1. #include http.conf

FastDFS学习总结(2)--Tracker与Storage配置详解的更多相关文章

  1. centos fastdfs 多服务器 多硬盘 多组 配置详解

    说正文前,先感谢happy_fish100提供的fastdfs,轻量级的分布式文件服务器. 随着用户量的变大,图片,视频等的量会不断的增大,这个时候一个硬盘可能不够用了,就要加硬盘.硬盘加不了时,就要 ...

  2. iOS学习——iOS项目Project 和 Targets配置详解

    最近开始学习完整iOS项目的开发流程和思路,在实际的项目开发过程中,我们通常需要对项目代码和资料进行版本控制和管理,一般比较常用的SVN或者Github进行代码版本控制和项目管理.我们iOS项目的开发 ...

  3. 学习计划 nginx 中 php的配置详解

    本章只看一个刚下载的nginx是如何支持php的 -- location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_inde ...

  4. 【Maven学习】maven中依赖的配置详解

    根元素project下的dependencies可以包含一个或者多个dependency元素,以声明一个或多个项目依赖.每个依赖可以包含的元素有: groupId,artifactId和version ...

  5. Maven学习总结(一)——pom.xml文件配置详解

    <build>标签:<plugins>给出构建过程中所用到的插件 <plugins> <plugin> <groupId>org.apach ...

  6. nginx与fastdfs配置详解与坑

    nginx与fastdfs配置详解与坑 环境 ubantu19.04 fastdfs-5.11 fastdfs-nginx-module-1.20 libfastcommon-1.0.39 nginx ...

  7. Struts2学习笔记二 配置详解

    Struts2执行流程 1.简单执行流程,如下所示: 在浏览器输入请求地址,首先会被过滤器处理,然后查找主配置文件,然后根据地址栏中输入的/hello去每个package中查找为/hello的name ...

  8. Spring学习 6- Spring MVC (Spring MVC原理及配置详解)

    百度的面试官问:Web容器,Servlet容器,SpringMVC容器的区别: 我还写了个文章,说明web容器与servlet容器的联系,参考:servlet单实例多线程模式 这个文章有web容器与s ...

  9. webpack学习(五)配置详解

    配置详解 //使用插件html-webpack-plugin打包合并html //使用插件extract-text-webpack-plugin打包独立的css //使用UglifyJsPlugin压 ...

随机推荐

  1. hiho 1564 - 简单dfs + 宏的危害!!!

    题目链接 H公司有 N 台服务器,编号1~N,组成了一个树形结构.其中中央服务器处于根节点,终端服务器处于叶子节点. 中央服务器会向终端服务器发送消息.一条消息会通过中间节点,到达所有的终端服务器.消 ...

  2. 带参数,头信息,代理,cookie爬取

    1.get传参 (1)汉字报错 :解释器器ascii没有汉字 url汉字转码 urllib.parse.quote safe="string.printtable" (2)字典传参 ...

  3. iptables 简单介绍及应用 Linux防火墙

    iptables 即 Linux防火墙 的简单介绍及使用 iptables生效位置如下图: 其中, 网络防火墙也可以使用一台启用了iptables的Linux主机代替; 路由器或集线器等设施在拓扑中省 ...

  4. “.”开头,以"}"结尾,中间是任意字符的正则

    "."开头,以"}"结尾,中间是任意字符的正则 /^\..+\{$/

  5. GDOI2018爆炸记

    Day0 12:45p.m. 从初中部出发前回班探望了一下同学,受到热烈欢迎(?) 13:15p.m. 出发去中山,路上本来想用mac看fz的,结果ass字幕导入失败,心态爆炸*1:后来成功获取xfz ...

  6. HDU-2896 病毒侵袭 字符串问题 AC自动机

    题目链接:https://cn.vjudge.net/problem/HDU-2896 题意 中文题 给一些关键词和一个字符串,问字符串里包括了那几种关键词 思路 直接套模版 改insert方法,维护 ...

  7. SP687 REPEATS - Repeats(后缀数组)

    一个初步的想法是我们枚举重复子串的长度\(L\).然后跑一遍SA.然后我们枚举一个点\(i\),令他的对应点为\(i+L\),然后求出这两个点的LCP和LCS的长度答案就是这个点的答案就是\((len ...

  8. svn 验证位置失败 Authorization failed

    进入svn的conf目录下 修改svnserve.conf [general] anon-access = none  #未登录用户不允许访问 auth-access = write  passwor ...

  9. Linux Kernel 5.1 RC5发布

    我们距离正式的Linux 5.1内核发布还有不到一个月的时间,而今天Linus Torvalds宣布推出预期的Linux Kernel 5.1 RC5版本.Linus Torvalds专门评论了Lin ...

  10. 你可能需要了解下Laravel集合

    前言 集合通过 Illuminate\Support\Collection 进行实例,Laravel的内核大部分的参数传递都用到了集合,但这并不代表集合就是好的.Laravel作为快捷并优雅的开发框架 ...