FastDFS是余庆老师主导的开源的分布式文件系统,主要有Tracker(管理)和Storage(存储).

返回路径 = 组名/虚拟盘符{M00/00/02}/文件名

 

 

一.准备安装包 (版本不固定)

nginx

fastdfs-nginx-module

FastDFS

libfastcommon

 

安装依赖:

gcc –version  (检查gcc版本)

yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake

yum -y install wget httpd-tools vim

 

安装libfastcommon

tar -zxvf libfastcommonV1.0.7.tar.gz

进入libfasttocommon ./make.sh

./make.sh install 

将ibfastcommon.so文件到usr/lib下,一般默认在此目录下.

 

二.安装FastDFS

tar -zxvf FastDFS_v5.05.tar.gz

进入软件目录下 ./make.sh

./make.sh install

将此软件的conf/内的文件,移动到/etc/fdfs/ , 一般默认在此目录下.

 

三.安装tracker

进入/etc/fdfs/tracker.conf的配置文件就在里面,需要改下名称,改成tracker.conf,然后在修改。

#需要修改的内容

base_path=/home/logs/fastdfs      #日志文件

http.server_port=80                       #端口

store_group=group1                     #组名

日志文件的目录需要自己创建一下。

启动

fdfs_trackerd /etc/fdfs/tracker.conf start

netstat -unltp | grep tracker      查看端口是否存在 22122

 

四.安装storage

进入/etc/fast/ 拷贝storage.conf.sample  为storage.conf 在修改:

#修改内容

base_path=/home/logs/storage (日志路径)

store_path0=/home/data/storage (实际储存文件路径,可以配置多个)

tracker_server=10.0.0.41:22122 (连接tracker服务器地址)

group_name=group1 (必须和tracker的组名相同)

http.server_port=80 (这个端口也要改

记得创建日志目录

启动

fdfs_storaged /etc/fdfs/storage.conf start

netstat -unltp | grep storage                查看端口23000

 

看看tracker和storage是不是在通信:

fdfs_monitor /etc/fdfs/storage.conf

 

 

测试一下图片上传:

FastDFS提供一个文件上传命令:usr/bin/fdfs_test 测试文件上传。测试上传需要连接tracker服务器,连接storage服务器。因此需要指定一个配置文件:client.conf配置文件,通过Client.conf连接tracker服务器。

修改/etc/fdfs/client.conf

#内容

base_path=/home/logs/client (日志目录)

tracker_server=10.0.0.41:22122 (tracker端口)

记得创建日志目录

在/etc/fdfs/下上传一张图片 进行测试:

/usr/bin/fdfs_test /etc/fdfs/client.conf upload anti-steal.jpg

 

 五.安装nginx

#gcc安装

yum install gcc-c++

#PCREpcre-devel 安装

yum install -y pcre pcre-devel

# zlib 安装

yum install -y zlib zlib-devel

#OpenSSL 安装

yum install -y openssl openssl-devel

 

解压、编译、安装

tar -zxvf nginx-1.12.1.tar.gz

cd nginx-1.12.1

./configure

make && make install

 

.安装fastdfs-nginx-module

tar -xf  fastdfs-nginx-module_v1.16.tar.gz

修改/fastdfs-nginx-module/src/config

 

 拷贝usr/lib64目录下库文件libfdfsclient.so 

将fastdfs-nginx-module模块安装到nginx中:

cd nginx-1.16

./configure –add-module=../fastdfs-nginx-module/src

重新编译nginx

make && make install

查看nginx模块

/usr/local/nginx/sbin/nginx -V

复制 fastdfs-nginx-module 源码中的配置文件到/etc/fdfs 目录, 并修改:

cd fastdfs-nginx-module/src

cp mod_fastdfs.conf /etc/fdfs/

进入/etc/fdfs/修改mod_fastdfs.conf如下配置,其他默认:

# 连接超时时间
connect_timeout=10

# Tracker Server
tracker_server=10.0.0.41:22122

# StorageServer 默认端口
storage_server_port=23000

# 如果文件ID的uri中包含/group**,则要设置为true
url_have_group_name = true

# Storage 配置的store_path0路径,必须和storage.conf中的一致
store_path0=/home/data/storage

# the base path to store log files
base_path=/home/logs/storage

进入/usr/local/nginx/conf目录下修改nginx.conf
修改配置,其它的默认
在80端口下添加fastdfs-nginx模块

location ~/group([0-9])/M00 {
    ngx_fastdfs_module;
}
注意下面#user  nobody;改成 #user  root;

 

 

在文件存储目录下创建软连接,将其链接到实际存放数据的目录,注意这个文件存储的位置后面多个data目录是系统自动生成的

ln -s /home/data/storage/data /home/data/storage/data/M00

 

启动nginx 

cd /usr/local/nginx/sbin/

./nginx

直接启动
/usr/local/nginx/sbin/nginx

#设置开机启动

vim /etc/rc.local
/usr/local/nginx/sbin/nginx

# 设置执行权限

chmod 755 rc.local

在地址栏中访问成功 http://10.0.0.41/group1/M00/00/00/rBAACVzBeU2AQBKJAAOHDqS1H9o350.jpg

(可能访问不到,成功访问会加载出你路径下的图片)

 

版权声明:本文为JJY-原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/JJY-/articles/12804306.html