领课教育开源系统-FastDFS的安装和使用

DeFi金融
• 阅读 197

FastDFS 是用 c 语言编写的一款开源的分布式文件系统,有多种原因的客户端(包括有Java的客户端)。FastDFS 为互联网量身定制, 充分考虑了冗余备份、负载均衡、线性扩容等机制,并注重高可用、高性能等指标,使用 FastDFS 很容易搭建一套高性能的文件服务器集群提供文件上传、下载等服务。

FastDFS 架构包括 Tracker server 和 Storage server。客户端请求 Tracker server 进行文 件上传、下载,通过 Tracker server 调度最终由 Storage server 完成文件上传和下载。Tracker server 作用是负载均衡和调度,通过 Tracker server 在文件上传时可以根据一些 策略找到 Storage server 提供文件上传服务。可以将 tracker 称为追踪服务器或调度服务 器。Storage server 作用是文件存储,客户端上传的文件最终存储在 Storage 服务器上, Storageserver 没有实现自己的文件系统而是利用操作系统 的文件系统来管理文件。可以将 storage 称为存储服务器。
领课教育开源系统-FastDFS的安装和使用

1.  准备如下 tar 包
libfastcommon-1.0.43.tar.gz
fastdfs-6.06.tar.gz
nginx-1.18.0.tar.gz
fastdfs-nginx-module-1.22.tar.gz
2.  libfastcommon的安装
# tar -zxvf libfastcommon-1.0.43.tar.gz //解压
# cd libfastcommon-1.0.43 // 进入解压目录
# ./make.sh             //预编译
# ./make.sh install  //安装

领课教育开源系统-FastDFS的安装和使用

3.  Fastdfs的安装
# tar -zxvf fastdfs-6.06.tar.gz //解压
# cd /root/download/fastdfs-6.06 // 进入解压目录
# ./make.sh && ./make.sh install

领课教育开源系统-FastDFS的安装和使用

4.  Fastdfs的配置
FastDFS由跟踪服务器(Tracker Server)、存储服务器(Storage Server)和客户端(Client)构成。
Tracker Server
# cp /etc/fdfs/tracker.conf.sample tracker.conf
base_path = /opt/fastdfs/tracker
注意:保证/opt/fastdfs/tracker已经存在,否则启动失败。

# service fdfs_trackerd start // 启动
# chkconfig fdfs_trackerd on // 设置开机启动
Storage Server
# cp /et/fdfs/storage.conf.sample storage.conf
base_path = /opt/fastdfs/storage
store_path0 = /opt/fastdfs/storage0
tracker_server = 192.168.10.27:22122
注意:保证/opt/fastdfs/storage和/opt/fastdfs/storage0已经存在,否则启动失败。

192.168.10.27为内网IP,若要外网调试,可以使用外网IP。
# service fdfs_storaged start // 启动
# chkconfig fdfs_storaged on // 设置开机启动

查看Storage和Tracker是否在通信
# /usr/bin/fdfs_monitor /etc/fdfs/storage.conf
5.  Nginx的安装(与fastdfs-nginx-module模块整合)
# tar -zxvf nginx-1.18.0.tar.gz
# tar -zxvf fastdfs-nginx-module-1.22.tar.gz
# cd nginx-1.18.0
# ./configure --add-module=../fastdfs-nginx-module-1.22/src
# make && make install
6. 配置
# cp fastdfs-nginx-module-1.22/src/mod_fastdfs.conf /etc/fdfs/

# vi /etc/fdfs/mod_fastdfs.conf
tracker_server=192.168.10.27:22122
url_have_group_name = true
store_path0=/fastdfs/storage

# cd fastdfs-6.06/conf/                         // 进入fastdfd源码conf目录
# cp http.conf mime.types /etc/fdfs/     // 将http.conf,mime.types两个文件拷贝到/etc/fdfs/目录下

# vi /usr/local/nginx/conf/nginx.conf
server {
listen       80;
server_name  localhost;
  location ~/group([0-9])/M00 {
      root  /opt/fastdfs/storage0/data;
      ngx_fastdfs_module;
   }
}

文章来源:https://blog.roncoo.com/artic...

点赞
收藏
评论区
推荐文章
Stella981 Stella981
3年前
FastDFS使用中的几个常见问题
1\.FastDFS适用的场景以及不适用的场景  FastDFS是为互联网应用量身定做的一套分布式文件存储系统,非常适合用来存储图片、音频、视频、文档等文件。对于互联网应用,简洁高效的FastDFS和其他分布式文件系统相比,优势非常明显。具体情况大家可以查阅相关介绍文档,如:FastDFS架构设计文档等等。  出于简洁考虑,FastDFS没
Wesley13 Wesley13
3年前
J2EE分布式架构 dubbo+springmvc+mybatis+ehcache+redis分布式架构
平台简介       Jeesz是一个分布式的框架,提供项目模块化、服务化、热插拔的思想,高度封装安全性的JavaEE快速开发平台。      Jeesz本身集成Dubbo服务管控、Zookeeper注册中心、Redis分布式缓存技术、FastDFS分布式文件系统、ActiveMQ异步消息中间件、Nginx负载均衡等分布式技术      
Stella981 Stella981
3年前
FastDFS和HDFS性能对比测试
 FastDFS以架构简洁和性能良好著称。 今天无意中在网上看到一篇文章:《HDFS和FastDFS的上传、下载效率对比测试》,文章链接:https://blog.csdn.net/a519781181/article/details/79125379/ 我觉得这个性能对比测试结果基本符合大家的认知及预期。FastDFS适合为中
Stella981 Stella981
3年前
FastDFS+Nginx
FastDFS安装和配置它是什么FastDFS介绍:http://www.oschina.net/p/fastdfs(http://www.oschina.net/p/fastdfs)官网下载1:https://github.com/happyfish100/fastdfs/rele
Easter79 Easter79
3年前
SpringBoot2.0集成FastDFS
SpringBoot2.0集成FastDFS前两篇整体上介绍了通过Nginx和FastDFS的整合来实现文件服务器。但是,在实际开发中对图片或文件的操作都是通过应用程序来完成的,因此,本篇将介绍SpringBoot整合FastDFS客户端来实现对图片/文件服务器的访问。如果有
Easter79 Easter79
3年前
Tus和go
前言现如今,分布式文件系统可谓是琳琅满目,多种多样,有hdfs,gfs,zfs,fastdfs,gofastdfs等,怎么选择合适自己的分布式文件系统呢?在这篇文章中,我们不讲……额,我只想表达一下我在研究gofastdfs过程中踩的坑。gofastdfs首先,什么是gofastdfs?是fastdfs的弟弟吗
Stella981 Stella981
3年前
SpringBoot2.0集成FastDFS
SpringBoot2.0集成FastDFS前两篇整体上介绍了通过Nginx和FastDFS的整合来实现文件服务器。但是,在实际开发中对图片或文件的操作都是通过应用程序来完成的,因此,本篇将介绍SpringBoot整合FastDFS客户端来实现对图片/文件服务器的访问。如果有
Stella981 Stella981
3年前
FastDFS安全注意事项
  对于互联网应用,FastDFS的标准使用姿势:通过FastDFSAPI进行文件上传等更新操作,storageserver上通过FastDFSnginx扩展模块使用HTTP方式下载文件。FastDFS的文件名由storageserver通过算法生成,生成的文件名中包含时间戳、文件大小、文件内容CRC32校验码、随机数等,因此FastDFS生成的
Stella981 Stella981
3年前
FastDFS
1.FastDFS是什么?FastDFS是分布式文件系统。使用FastDFS很容易搭建一套高性能的文件服务器集群提供文件上传、下载等服务。2.工作原理FastDFS架构包括Trackerserver和Storageserver。客户端请求Trackerserver进行文件上传、下载,通过Trackerser
Stella981 Stella981
3年前
FastDFS介绍与安装
目录FastDFS.11    介绍....12    安装....42.1     安装libfastcommon.42.1.1     下载安装包并解压....42.2     安装FastDFS.52.3     安装nginx.82.3.1     更新nginx安装库....82.3
Stella981 Stella981
3年前
Fastdfs安装_支持nginx访问图片地址
说明我们安装fastdfs,肯定是希望文件(图片)可以外网访问。本文主要就是讲解结合nginx如何访问上传到fdfs的图片文件准备1.准备服务器需要先安装好fastdfs2.准备依赖库pcre。_可以在线安装(yumyinstallpcredeve)_wge