• FastDFS 配置文件 client.conf storage_ids.conf


    client.conf :

    # connect timeout in seconds

    # default value is 30s
    connect_timeout=30              连接超时
     
    # network timeout in seconds
    # default value is 30s
    network_timeout=60              网络超时
     
    # the base path to store log files
    base_path=/home/yuqing/fastdfs              日志文件目录
     
    # tracker_server can ocur more than once, and tracker_server format is
    #  "host:port", host can be hostname or ip address
    tracker_server=10.0.0.42:22122                             tracker服务器地址
     
    #standard log level as syslog, case insensitive, value list:
    ### emerg for emergency
    ### alert
    ### crit for critical
    ### error
    ### warn for warning
    ### notice
    ### info
    ### debug
    log_level=info                      日志级别
     
    # if use connection pool
    # default value is false
    # since V4.05
    use_connection_pool = false               是否使用连接池
     
    # connections whose the idle time exceeds this time will be closed
    # unit: second
    # default value is 3600
    # since V4.05
    connection_pool_max_idle_time = 3600           
     
    # if load FastDFS parameters from tracker server
    # since V4.05
    # default value is false
    load_fdfs_parameters_from_tracker=false
     
    # if use storage ID instead of IP address
    # same as tracker.conf
    # valid only when load_fdfs_parameters_from_tracker is false
    # default value is false
    # since V4.05
    use_storage_id = false
     
    # specify storage ids filename, can use relative or absolute path
    # same as tracker.conf
    # valid only when load_fdfs_parameters_from_tracker is false
    # since V4.05
    storage_ids_filename = storage_ids.conf
     
     
    #HTTP settings
    http.tracker_server_port=80
     
    #use "#include" directive to include HTTP other settiongs
    ##include http.conf
     
     
     
     
     
    storage_ids.conf
    如果storage使用ids来标识,而不是用ip,这个配置文件需要配置
    # <id>     <group_name>  <ip_or_hostname>
    # 100001   group1  192.168.0.196
    # 100002   group1  192.168.0.116
     
     
    注意:启用ids后  
    client.conf 中也有两处需要修改:
    use_storage_id = false
    storage_ids_filename = storage_ids.conf
    tracker.conf 中有三处需要修改:
    use_storage_id = false
    storage_ids_filename = storage_ids.conf
    id_type_in_filename = ip
    storage.conf中有一处  或许要修改:
          
    group_name=group1
  • 相关阅读:
    子类构造函数中调用虚函数问题验证
    socks5代理浅识
    关于C++标准库(第2版)std::remove_if的"特性"概述
    动态获取结构体中指定的属性值
    构造和析构函数定义为私有场景
    remove_pointer使用测验
    广播自定义消息实现进程间的通信问题
    遍历窗口权限问题
    嵌入窗口到桌面的问题
    实验一 熟悉实验环境
  • 原文地址:https://www.cnblogs.com/centos2017/p/7896727.html
Copyright © 2020-2023  润新知