FastDFS Tracker端配置文件詳解及啓動注意事項

今天進行了FastDFS的tracker端的配置,代碼發送如下:
Java代碼  收藏代碼
  1. # is this config file disabled  
  2. false for enabled  
  3. true for disabled  
  4. disabled=false  
  5. #當前配置是否不可用false可用,true不可用  
  6.   
  7. # bind an address of this host  
  8. # empty for bind all addresses of this host  
  9. bind_addr=  
  10. #是否綁定IP如果一個服務器上有多個IP則設置哪個IP可用,如果不設置則不限制  
  11.   
  12. # the tracker server port  
  13. port=22122  
  14. #端口  
  15.   
  16. # connect timeout in seconds  
  17. default value is 30s  
  18. connect_timeout=30  
  19. #針對socket套接字函數connect的連接超時時間設置  
  20.   
  21. # network timeout in seconds  
  22. default value is 30s  
  23. network_timeout=60  
  24. #設置網絡超時,單位秒,發送或接收數據時,如果在超時時間之後依然不能進行,則本次網絡通訊失敗  
  25.   
  26. # the base path to store data and log files  
  27. base_path=/home/fdfs  
  28. #配置保存根目錄地址,這個目錄必須存在,子目錄將自動創建  
  29.   
  30. # max concurrent connections this server supported  
  31. max_connections=256  
  32. #最大連接數  
  33.   
  34. # work thread count, should <= max_connections  
  35. default value is 4  
  36. # since V2.00  
  37.   
  38. work_threads=1  
  39. #工作線程數,通常設置爲CPU數量  
  40.   
  41. # the method of selecting group to upload files  
  42. 0: round robin  
  43. 1: specify group  
  44. 2: load balance, select the max free space group to upload file  
  45. store_lookup=2  
  46. #上傳組(卷)的方式:0輪詢,1:指定,2:負載平衡(剩餘空間最大選擇)  
  47.   
  48. # which group to upload file  
  49. # when store_lookup set to 1, must set store_group to the group name  
  50. store_group=group2  
  51. #如果上一參數選擇1方式,即制定祖名,當前參數用來設置指定的組,如果選擇其他方式,當前參數無效  
  52.   
  53. # which storage server to upload file  
  54. 0: round robin (default)  
  55. 1: the first server order by ip address  
  56. 2: the first server order by priority (the minimal)  
  57. store_server=0  
  58. #同組推送方式0.輪詢方式,1.根據ip地址進行排序選擇第一個服務器,2.根據優先級進行排序(優先級由storeServer的配置文件中upload_priority屬性設置)  
  59.   
  60. # which path(means disk or mount point) of the storage server to upload file  
  61. 0: round robin  
  62. 2: load balance, select the max free space path to upload file  
  63.   
  64. store_path=0  
  65. #選擇哪個文件目錄進行上傳(一個StroeServer上面可以有多個base_path)0.輪詢,2.剩餘空間最大  
  66.   
  67. # which storage server to download file  
  68. 0: round robin (default)  
  69. 1: the source storage server which the current file uploaded to  
  70. download_server=0  
  71. #選擇哪個storeServer最爲下載服務器,0.輪詢,1.哪個爲源則哪個下載  
  72.   
  73. # reserved storage space for system or other applications.  
  74. if the free(available) space of any stoarge server in   
  75. # a group <= reserved_storage_space,   
  76. # no file can be uploaded to this group.  
  77. # bytes unit can be one of follows:  
  78. ### G or g for gigabyte(GB)  
  79. ### M or m for megabyte(MB)  
  80. ### K or k for kilobyte(KB)  
  81. ### no unit for byte(B)  
  82. ### XX.XX% as ratio such as reserved_storage_space = 10%  
  83. reserved_storage_space = 10%  
  84. #系統保留空間大小,用來保證系統和其他應用的正常運行  
  85.   
  86. #standard log level as syslog, case insensitive, value list:  
  87. ### emerg for emergency  
  88. ### alert  
  89. ### crit for critical  
  90. ### error  
  91. ### warn for warning  
  92. ### notice  
  93. ### info  
  94. ### debug  
  95. log_level=info  
  96. #日誌級別  
  97.   
  98. #unix group name to run this program,   
  99. #not set (empty) means run by the group of current user  
  100.   
  101. run_by_group=  
  102. #使用那個系統用戶組運行FastDFS,默認爲啓動線程的用戶組  
  103.   
  104. #unix username to run this program,  
  105. #not set (empty) means run by current user  
  106. run_by_user=  
  107. #使用那個系統用戶運行FastDFS。默認爲啓動線程的用戶  
  108.   
  109. # allow_hosts can ocur more than once, host can be hostname or ip address,  
  110. "*" means match all ip addresses, can use range like this10.0.1.[1-15,20] or  
  111. # host[01-08,20-25].domain.com, for example:  
  112. # allow_hosts=10.0.1.[1-15,20]  
  113. # allow_hosts=host[01-08,20-25].domain.com  
  114. allow_hosts=*  
  115. #設置可以連接當前tracker的IP範圍,包括client和store_server  
  116.   
  117. # sync log buff to disk every interval seconds  
  118. default value is 10 seconds  
  119. sync_log_buff_interval = 10  
  120. #同步或刷新日誌到本地硬盤的時間間隔,單位:秒  
  121.   
  122. # check storage server alive interval seconds  
  123. check_active_interval = 120  
  124. #檢測storage_server的存活狀態時間間隔,單位:秒,本參數要大於storage server的心跳包發送間隔一般爲2-3倍  
  125.   
  126. # thread stack size, should >= 64KB  
  127. default value is 64KB  
  128. thread_stack_size = 64KB  
  129. #tracker server的線程棧大小,要求大於等於64K  
  130.   
  131. # auto adjust when the ip address of the storage server changed  
  132. default value is true  
  133. storage_ip_changed_auto_adjust = true  
  134. #當storage server的IP發生變化時集羣是否自動調整。只有在storage server進程重啓時才能完成自動調整  
  135.   
  136. # storage sync file max delay seconds  
  137. default value is 86400 seconds (one day)  
  138. # since V2.00  
  139. storage_sync_file_max_delay = 86400  
  140. #存儲服務器之間同步文件的最大延遲時間,缺省爲1天,可以根據實際情況進行調整  
  141.   
  142. # the max time of storage sync a file  
  143. default value is 300 seconds  
  144. # since V2.00  
  145. storage_sync_file_max_time = 300  
  146. #同步一個文件需要消耗的最大時間,缺省爲300秒,即5分鐘  
  147.   
  148. if use a trunk file to store several small files  
  149. default value is false  
  150. # since V3.00  
  151. use_trunk_file = false   
  152. #是否使用小文件合併存儲特性,缺省關閉,打開時可以減少碎片文件的出現,但同時加大服務器的負載  
  153.   
  154. # the min slot size, should <= 4KB  
  155. default value is 256 bytes  
  156. # since V3.00  
  157. slot_min_size = 256  
  158. #爲trunk file分配的最小字節數,比如一個文件只有16字節,根據當前設置,也會爲其分配256字節  
  159.   
  160. # the max slot size, should > slot_min_size  
  161. # store the upload file to trunk file when it's size <=  this value  
  162. default value is 16MB  
  163. # since V3.00  
  164. slot_max_size = 16MB  
  165. #爲trunk file分配的最大字節數,如果文件小於大小則使用trunk方式存儲,當文件大小大於這個數值是直接保存到一個文件中(不採用合併存儲方式)  
  166.   
  167. # the trunk file size, should >= 4MB  
  168. default value is 64MB  
  169. # since V3.00  
  170. trunk_file_size = 64MB  
  171. #trunk file的大小,不建議設置過大  
  172.   
  173. if create trunk file advancely  
  174. default value is false  
  175. # since V3.06  
  176. trunk_create_file_advance = false  
  177. #是否提前創建好trunk文件,只用當這個參數設置爲true時下面的3個以trunk_create_file開頭的參數將不用設置  
  178.   
  179. # the time base to create trunk file  
  180. # the time format: HH:MM  
  181. default value is 02:00  
  182. # since V3.06  
  183. trunk_create_file_time_base = 02:00  
  184. #創建trunk file的起始時間點,當前爲凌晨2點開始  
  185.   
  186. # the interval of create trunk file, unit: second  
  187. default value is 38400 (one day)  
  188. # since V3.06  
  189. trunk_create_file_interval = 86400  
  190. #提前創建trunk file的時間間隔,默認爲1天  
  191.   
  192. # the threshold to create trunk file  
  193. # when the free trunk file size less than the threshold, will create   
  194. # the trunk files  
  195. default value is 0  
  196. # since V3.06  
  197. trunk_create_file_space_threshold = 20G  
  198. #提前創建trunk file時,需要達到的空閒trunk大小  
  199. #例如:當前配置爲20G,現在空閒的trunk file大小爲4G,那麼只創建16G的trunk file  
  200.   
  201. if check trunk space occupying when loading trunk free spaces  
  202. # the occupied spaces will be ignored  
  203. default value is false  
  204. # since V3.09  
  205. # NOTICE: set this parameter to true will slow the loading of trunk spaces   
  206. # when startup. you should set this parameter to true when neccessary.  
  207. trunk_init_check_occupying = false  
  208. #trunk file 初始化時,是否檢查可用空間是否被佔用  
  209.   
  210. if ignore storage_trunk.dat, reload from trunk binlog  
  211. default value is false  
  212. # since V3.10  
  213. # set to true once for version upgrade when your version less than V3.10  
  214. trunk_init_reload_from_binlog = false  
  215. #是否無條件從trunk binlog中加載trunk可用空間信息  
  216.   
  217. if use storage ID instead of IP address  
  218. default value is false  
  219. # since V4.00  
  220. use_storage_id = false  
  221. #是否使用 serverID作爲storage server標識  
  222.   
  223. # specify storage ids filename, can use relative or absolute path  
  224. # since V4.00  
  225. storage_ids_filename = storage_ids.conf  
  226. #use_storage_id設置爲true,才需要設置本參數,詳見源碼目錄下的conf/storage_ids.conf  
  227. #這個文件中設置組名、serverID和對應的IP地址  
  228.   
  229. # id type of the storage server in the filename, values are:  
  230. ## ip: the ip address of the storage server  
  231. ## id: the server id of the storage server  
  232. this paramter is valid only when use_storage_id set to true  
  233. default value is ip  
  234. # since V4.03  
  235. id_type_in_filename = ip  
  236. #use_storage_id設置爲true時才需要設置本參數  
  237.   
  238.   
  239. if store slave file use symbol link  
  240. default value is false  
  241. # since V4.01  
  242. store_slave_file_use_link = false  
  243. #存儲從文件是否採用symbol link(符號鏈接)方式  
  244. #如果設置爲true,一個從文件將佔用兩個文件:原始文件及指向它的符號鏈接  
  245.   
  246. if rotate the error log every day  
  247. default value is false  
  248. # since V4.02  
  249. rotate_error_log = false  
  250. #是否定期輪轉error log,目前僅支持一天輪轉一次  
  251.   
  252. # rotate error log time base, time format: Hour:Minute  
  253. # Hour from 0 to 23, Minute from 0 to 59  
  254. default value is 00:00  
  255. # since V4.02  
  256. error_log_rotate_time=00:00  
  257. #error log定期輪轉的時間節點,rotate_error_log參數設置爲true時,本參數有效  
  258.   
  259. # rotate error log when the log file exceeds this size  
  260. 0 means never rotates log file by log file size  
  261. default value is 0  
  262. # since V4.02  
  263. rotate_error_log_size = 0  
  264. #error log按大小進行輪轉 0代表不按大小進行輪轉,否則當error log文件達到大小則輪轉  
  265.   
  266. if use connection pool  
  267. default value is false  
  268. # since V4.05  
  269. use_connection_pool = false  
  270. #是否使用連接池  
  271.   
  272. # connections whose the idle time exceeds this time will be closed  
  273. # unit: second  
  274. default value is 3600  
  275. # since V4.05  
  276. connection_pool_max_idle_time = 3600  
  277. #連接池鏈接的最大生存時間,單位秒,use_connection_pool設置爲true時有效  
  278.   
  279. # HTTP port on this tracker server  
  280. http.server_port=8080  
  281. #http服務端口,默認情況下V4.06是不安裝http服務的,詳見INSTALL文件  
  282.   
  283.   
  284. # check storage HTTP server alive interval seconds  
  285. # <= 0 for never check  
  286. default value is 30  
  287. http.check_alive_interval=30  
  288. #檢查長鏈接的存活時間30秒  
  289.   
  290. # check storage HTTP server alive type, values are:  
  291. #   tcp : connect to the storge server with HTTP port only,   
  292. #        do not request and get response  
  293. #   http: storage check alive url must return http status 200  
  294. default value is tcp  
  295. http.check_alive_type=tcp  
  296. #長鏈接的存在方式,當前配置爲tcp方式  
  297.   
  298. # check storage HTTP server alive uri/url  
  299. # NOTE: storage embed HTTP server support uri: /status.html  
  300. http.check_alive_uri=/status.html  
  301. #利用什麼標識進行檢查  

附件中有保存好的traker.conf文件,需要的可以進行下載
配置完成之後,運行
Java代碼  收藏代碼
  1. /usr/local/bin/fdfs_trackerd /etc/fdfs/tracker.conf  

tracker端就可以運行成功了。
可能出現的問題有兩個
1.base_path設置的目錄不存在,如果報這個錯誤,需要按base_path的設置創建一個目錄
2.找不到libevent-2.0.so.5
如果找不到這個,請確認安裝時的安裝位置
一般這個庫會安裝到/usr/local/lib中
而我們的fdfs_trackerd會到/usr/lib中去查找,所以使用
Java代碼  收藏代碼
  1. ln -s /usr/local/lib/libevent-2.0.so.5 /usr/lib/libevent-2.0.so.5  

將庫加載到/usr/lib中就可以了
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章