FastDFS

FastDFS安装

FastDFS是C语言开发,建议在linux上运行,本教程使用Centos6.5作为安装环境。

安装FastDFS需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc:yum install -y gcc-c++

安装 trackerd 

安装libevent

FastDFS依赖libevent库,需要安装:

yum -y install libevent


安装libfastcommon

libfastcommon是FastDFS官方提供的,libfastcommon包含了FastDFS运行所需要的一些基础库。

将libfastcommonV1.0.7.tar.gz拷贝至/usr/local/下

cd /usr/local
tar -zxvf libfastcommonV1.0.7.tar.gz
cd libfastcommon-1.0.7
./make.sh
echo $?
./make.sh install
echo $?

注意:libfastcommon安装好后会自动将库文件拷贝至/usr/lib64下,由于FastDFS程序引用usr/lib目录所以需要将/usr/lib64下的库文件拷贝至/usr/lib下。

cd /user/lib64
cp libfastcommon.so  ../lib


tracker编译安装

将FastDFS_v5.05.tar.gz拷贝至/usr/local/下

tar -zxvf FastDFS_v5.05.tar.gz
cd FastDFS
./make.sh
echo $?
./make.sh install
echo $?

安装成功将安装目录下的conf下的文件拷贝到/etc/fdfs/下。

配置

安装成功后进入/etc/fdfs目录:

拷贝一份新的tracker配置文件:

cp tracker.conf.sample tracker.conf

修改tracker.conf

vi tracker.conf
base_path=/home/yuqing/FastDFS

改为:

#设置 tracker 的数据文件和日志目录(需预先创建)

base_path=/home/FastDFS


启动 

/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart

设置开机自动启动

vim /etc/rc.d/rc.local

将运行命令行添加进文件:

/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart


安装 storage

安装libevent

FastDFS依赖libevent库,需要安装:

yum -y install libevent


安装libfastcommon

libfastcommon是FastDFS官方提供的,libfastcommon包含了FastDFS运行所需要的一些基础库。

将libfastcommonV1.0.7.tar.gz拷贝至/usr/local/下

cd /usr/local
tar -zxvf libfastcommonV1.0.7.tar.gz
cd libfastcommon-1.0.7
./make.sh
echo $?
./make.sh install
echo $?

注意:libfastcommon安装好后会自动将库文件拷贝至/usr/lib64下,由于FastDFS程序引用usr/lib目录所以需要将/usr/lib64下的库文件拷贝至/usr/lib下。

cd /user/lib64
cp libfastcommon.so  ../lib


storage编译安装

将FastDFS_v5.05.tar.gz拷贝至/usr/local/下

tar -zxvf FastDFS_v5.05.tar.gz
cd FastDFS
./make.sh
echo $?
./make.sh install
echo $?

安装成功将安装目录下的conf下的文件拷贝到/etc/fdfs/下。

配置

安装成功后进入/etc/fdfs目录:

拷贝一份新的storage配置文件:

cp storage.conf.sample storage.conf

修改storage.conf

vi storage.conf
group_name=group1
base_path=/home/yuqing/FastDFS改为:base_path=/home/FastDFS
store_path0=/home/yuqing/FastDFS改为:store_path0=/home/FastDFS/fdfs_storage
#如果有多个挂载磁盘则定义多个store_path,如下
#store_path1=.....
#store_path2=......
tracker_server=192.168.10.250:22122   #配置tracker服务器:IP

#如果有多个则配置多个tracker

tracker_server=192.168.10.251:22122


启动

网络要通 端口要通(连不上的时候 程序会卡住一直去连接tracerk)

/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart

设置开机自动启动

vim /etc/rc.d/rc.local

将运行命令行添加进文件:

/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart


FastDFS 和nginx整合

nginx 需要:

yum install -y gcc pcre-devel zlib zlib-devel openssl openssl-devel lrz*

在tracker上安装nginx

nginx的安装参考之前的nginx。

在每个tracker上安装nginx,的主要目的是做负载均衡及实现高可用。如果只有一台tracker服务器可以不配置nginx。

在Storage上安装nginx

FastDFS-nginx-module

将FastDFS-nginx-module_v1.16.tar.gz传至/usr/local/下

cd /usr/local
tar -zxvf FastDFS-nginx-module_v1.16.tar.gz
cd FastDFS-nginx-module/src

修改config文件将/usr/local/路径改为/usr/

将FastDFS-nginx-module/src下的mod_FastDFS.conf拷贝至/etc/fdfs/下

cp mod_FastDFS.conf /etc/fdfs/

并修改mod_FastDFS.conf的内容:

vi /etc/fdfs/mod_FastDFS.conf
base_path=/home/FastDFS
tracker_server=192.168.10.250.3:22122
#tracker_server=192.168.10.xxx:22122(多个tracker配置多行)
url_have_group_name=true#url中包含group名称
store_path0=/home/FastDFS/fdfs_storage   #指定文件存储路径

将libfdfsclient.so拷贝至/usr/lib下

cp /usr/lib64/libfdfsclient.so /usr/lib/

创建nginx/client目录

mkdir -p /var/temp/nginx/client

nginx安装

添加FastDFS-nginx-module模块

./configure \
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi \
--add-module=/usr/local/fastdfs-nginx-module/src
echo $?
make
echo $?
make install
echo $?

3.5.2.3nginx配置文件

添加server:

#user nobody;
worker_processes 1;
events {
worker_connections 1024;
}
http {    
include mime.types;    
default_type application/octet-stream;    
sendfile on;    
keepalive_timeout 65;    
server {        
listen 80;        
server_name localhost;        
location ~/group([0-9])/M00 {
ngx_fastdfs_module;        
}        
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;        
}    
}
}

说明:

server_name指定本机ip

location /group1/M00/:group1为nginx 服务FastDFS的分组名称,M00是FastDFS自动生成编号,对应store_path0=/home/FastDFS/fdfs_storage,如果FastDFS定义store_path1,这里就是M01



测试:

上传图片:

public class TestFastDFS {
    public static void main(String[] args) throws Exception{
    // 1、加载配置文件,配置文件中的内容就是tracker服务的地址。
        ClientGlobal.init("C:/Users/zongx/workspace/x3-web/src/main/resources/conf/client.conf");
        // 2、创建一个TrackerClient对象。直接new一个。
        TrackerClient trackerClient = new TrackerClient();
        // 3、使用TrackerClient对象创建连接,获得一个TrackerServer对象。
        TrackerServer trackerServer = trackerClient.getConnection();
        // 4、创建一个StorageServer的引用,值为null
        StorageServer storageServer = null;
        // 5、创建一个StorageClient对象,需要两个参数TrackerServer对象、StorageServer的引用
        StorageClient storageClient = new StorageClient(trackerServer, storageServer);
        // 6、使用StorageClient对象上传图片。
        //扩展名不带“.”看源码注释可知
        String[] strings = storageClient.upload_file("D:/Temp/123.jpg", "jpg", null);
        // 7、返回数组。包含组名和图片的路径。
        for (String string : strings) {
            System.out.println(string);
        }
    }
}
结果为:
group1
M00/00/00/wKgK-1u4ykeABIdbAAD-dD55MN0089.jpg

拼接访问地址:

访问图片:


http://192.168.10.251/group1/M00/00/00/wKgK-1u4ykeABIdbAAD-dD55MN0089.jpg




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值