FastDFS部署之踩坑.

开一台新的 centos 虚拟机.

  1. 安装 jdk1.8
yum install java-1.8.0-openjdk*

自己配置环境变量也可以,个人选择.


  1. 安装Nginx所需要的环境.(此案例自己下载nginx,自己编译.)
安装环境可参考【https://www.jianshu.com/p/780a0530ed8f】

  1. 安装libevent
yum -y install libevent

1.png

准备好安装包,并解压(没有包自己去官网下载)=-=.


  1. 安装libfastcommon

将libfastcommonV1.0.7.tar.gz拷贝至/usr/local/下
cd /usr/local
tar -zxvf libfastcommonV1.0.7.tar.gz
cd libfastcommon-1.0.7
./make.sh
./make.sh install

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

[root@192 lib64]# cp libfastcommon.so ../lib
2.png
  1. tracker编译安装

将FastDFS_v5.05.tar.gz拷贝至/usr/local/下
tar -zxvf FastDFS_v5.05.tar.gz
cd FastDFS
./make.sh
./make.sh install
安装成功将安装目录下的conf下的文件拷贝到/etc/fdfs/下。


3.png
  1. 配置
    6.1进入/etc/fdfs目录
拷贝一份新的tracker配置文件:
cp tracker.conf.sample tracker.conf
修改tracker.conf
vim tracker.conf
base_path=/home/yuqing/fastdfs
改为:
base_path=/home/fastdfs

6.2启动

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

error 意思就是没有 '/home/fastdfs' 这个目录,那就 mkdir -p 创建一下=。=.
然后在 启动.


5.png

6.3设置开机自动启动

vim /etc/rc.d/rc.loca
将命令添加到文件:/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart

然后 wq 保存=。=.

  1. FastDFS--storage安装(和 5.tracker编译安装)一模一样,不做解释.

7.1 配置
进入/etc/fdfs目录:

拷贝一份新的storage配置文件:
cp storage.conf.sample storage.conf
修改storage.conf
vim 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.101.3:22122 #配置tracker服务器:IP
#如果有多个则配置多个tracker
tracker_server=192.168.101.4:22122

7.2 启动

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

一样的 写到 【/etc/rc.d/rc.local】里面

vim /etc/rc.d/rc.local
将命令添加到文件:/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart
  1. 修改/etc/fdfs/client.conf
vim /etc/fdfs/client.conf
base_path=/home/fastdfs
tracker_server=192.168.101.3:22122
6.png
  1. FastDFS安装成功可通过/usr/bin/fdfs_test测试上传、下载等操作。
使用格式:
/usr/bin/fdfs_test 客户端配置文件地址  upload  上传文件

比如将/root下的图片上传到FastDFS中:
/usr/bin/fdfs_test /etc/fdfs/client.conf upload /root/1.png
7.png

  1. FastDFS 和nginx整合
    一开始Nginx的环境已经安装好了,直接开始编译.


    8.png

    一个Nginx 一个 Fast模块

10.1 先处理下 fast-nginx-module


11.png

将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/


10.png
将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.101.3:22122
#tracker_server=192.168.101.4:22122(多个tracker配置多行)
url_have_group_name=true        #url中包含group名称
store_path0=/home/fastdfs   #指定文件存储路径
将libfdfsclient.so拷贝至/usr/lib下
cp /usr/lib64/libfdfsclient.so /usr/lib/
创建nginx/client目录
mkdir -p /var/temp/nginx/client
11.png

10.2 开始编译Nginx
进入 Nginx目录


12.png
./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

然后 make
然后 make install


切换目录配置 nginx.conf

cd /usr/local/nginx
vim nginx.conf
13.png

最后启动Nginx


14.png

再执行一下

/usr/bin/fdfs_test /etc/fdfs/client.conf upload /root/1.png
[root@192 conf]# /usr/bin/fdfs_test /etc/fdfs/client.conf upload /root/1.png
This is FastDFS client test program v5.05

Copyright (C) 2008, Happy Fish / YuQing

FastDFS may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDFS source kit.
Please visit the FastDFS Home Page http://www.csource.org/ 
for more detail.

[2018-10-20 15:04:41] DEBUG - base_path=/home/fastdfs, connect_timeout=30, network_timeout=30, tracker_server_count=1, anti_steal_token=0, anti_steal_secret_key length=0, use_connection_pool=0, g_connection_pool_max_idle_time=3600s, use_storage_id=0, storage server id count: 0

tracker_query_storage_store_list_without_group: 
        server 1. group_name=, ip_addr=192.168.0.103, port=23000

group_name=group1, ip_addr=192.168.0.103, port=23000
storage_upload_by_filename
group_name=group1, remote_filename=M00/00/00/wKgAZ1vLpnmAL9sKAACS3YKjgyI364.png
source ip address: 192.168.0.103
file timestamp=2018-10-20 15:04:41
file size=37597
file crc32=2191754018
example file url: http://192.168.0.103/group1/M00/00/00/wKgAZ1vLpnmAL9sKAACS3YKjgyI364.png
storage_upload_slave_by_filename
group_name=group1, remote_filename=M00/00/00/wKgAZ1vLpnmAL9sKAACS3YKjgyI364_big.png
source ip address: 192.168.0.103
file timestamp=2018-10-20 15:04:41
file size=37597
file crc32=2191754018
example file url: http://192.168.0.103/group1/M00/00/00/wKgAZ1vLpnmAL9sKAACS3YKjgyI364_big.png
[root@192 conf]# 

访问:http://192.168.0.103/group1/M00/00/00/wKgAZ1vLpnmAL9sKAACS3YKjgyI364_big.png

15.png

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容