FastDFS服务器搭建--Ubuntu环境

FastDFS服务器搭建--Ubuntu环境

底下附整合SpringBoot
需要git工具
使用的Ubuntu18环境

安装前准备

安装环境依赖包: apt-get install build-essential

安装依赖库

1. 克隆libfastcommongit clone https://github.com/happyfish100/libfastcommon.git

2. 安装libfastcommon

# 进入项目
cd libfastcommon
# 编译
./make.sh
# 编译
./make.sh install

3. 设置环境变量和软链接

export LD_LIBRARY_PATH=/usr/lib/
ln -s /usr/lib/libfastcommon.so /usr/local/lib/libfastcomo

安装FastFDS

1. 下载: FastDFS的Github下载地址为:https://github.com/happyfish100/fastdfs/releases

自己寻找一个版本下载

# 解压
tar xzf fastfdsxxx.tar.gz

2. 安装:

# 进入项目然后,编译和安装
./make.sh
./make.sh install

3. 配置文件修改:

# 移动到默认安装目录
cd /etc/fdfs

将 client.conf.sample、storage.conf.sample、tracker.conf.sample后的.sample删除

  • 修改 tracker.conf

    vi tracker.conf
    
    base_path=/usr/local/opt/fastDFS/data
    

    要创建目录/usr/local/opt/fastDFS,下面目录都是要创建的

  • 修改storage.conf

    vi storage.conf
    
    # 修改存储路径
    store_path0=/usr/local/opt/fastDFS/store0
    # 修改本地路径
    base_path=/usr/local/opt/fastDFS/data
    # 修改tracker服务器
    tracker_server=本机ip:22122
    
  • 修改client.conf

    vi client.conf
    
    # 修改本地路径
    base_path=/usr/local/opt/fastDFS/data
    # 修改tracker服务器
    tracker_server=本机ip:22122
    

字段需要自己去找,并不是连着摆放的。使用vim命令寻找

  • 复制nginx及其插件需要使用的的配置文件
cp 克隆的fastdfs项目路径/conf/http.conf /etc/fdfs
cp 克隆的fastdfs项目路径/conf/mime.types /etc/fdfs

4. 启动服务

# 启动tracker
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
# 启动storage
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf

5. 验证

ps -ef | grep fdfs
# 显示有fdfs_trackerd和fdfs_storaged则表示成功

测试服务器

准备一张相片test.jpg

/usr/bin/fdfs_test  /etc/fdfs/client.conf  upload test.jpg
# 下面是上传成功打印的内容
This is FastDFS client test program v6.06

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.fastken.com/ 
for more detail.

[2020-01-26 14:51:55] DEBUG - base_path=/usr/local/opt/fastDFS/data, connect_timeout=5, network_timeout=60, 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.247.201, port=23000

group_name=group1, ip_addr=192.168.247.201, port=23000
storage_upload_by_filename
group_name=group1, remote_filename=M00/00/00/wKj3yV4tp4uAUBDqAAoJEM-jJhg179.jpg
source ip address: 192.168.247.201
file timestamp=2020-01-26 14:51:55
file size=657680
file crc32=3483575832
example file url: http://192.168.247.201/group1/M00/00/00/wKj3yV4tp4uAUBDqAAoJEM-jJhg179.jpg
storage_upload_slave_by_filename
group_name=group1, remote_filename=M00/00/00/wKj3yV4tp4uAUBDqAAoJEM-jJhg179_big.jpg
source ip address: 192.168.247.201
file timestamp=2020-01-26 14:51:55
file size=657680
file crc32=3483575832
example file url: http://192.168.247.201/group1/M00/00/00/wKj3yV4tp4uAUBDqAAoJEM-jJhg179_big.jpg

输入图片地址时,无法查看图片。原因是fastDFS没有携带web服务,所以无法响应uri请求,所以这时需要nginx

整个FastDFS和nginx

1. 下载插件源码

fastdfs-nginx-module下载

tar -zxvf fastdfs-nginx-modulexxx.tar.gz

2. 修改配置文件

cp fastdfs-nginx-module项目/src/mod_fastdfs.conf /etc/fdfs/
  • 修改mod_fastdfs.conf

    vim /etc/fdfs/mod_fastdfs.conf
    
    # 修改存储路径
    store_path0=/usr/local/opt/fastDFS/store0
    # 修改本地路径
    base_path=/usr/local/opt/fastDFS/data
    # 修改tracker服务器
    tracker_server=本机ip:22122
    # 允许组名
    url_have_group_name= true
    

安装nginx

1. 安装需要的编译环境

apt-get update
apt-get install libtool
apt-get install libpcre3 libpcre3-dev
apt-get install zlib1g-dev
apt-get install openssl

2. 下载nginx

nginx下载

3. 解压和配置文件导入

tar -zxvf nginxxx.tar.gz
# 创建client数据文件
mkdir -p /var/temp/nginx/client
# 导入
cd nginxxx
./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/opt/fastDFS/fastdfs-nginx-module/src

4. 编译与安装

make && make install
# 修改配置文件
vi /usr/local/nginx/conf/nginx.conf

修改nginx.conf

server {
        listen       80;
        server_name  本机ip;

        location /group1/M00/ {
                #root /home/FastDFS/fdfs_storage/data;
                          ngx_fastdfs_module;
        }

5. 验证

cd vi /usr/local/nginx/sbin
# 查看信息   可以看到之前的配置信息
./nginx -V
# 验证
./nginx -t #无错即安装成功
# 启动
./nginx

查看图片

此时浏览器输入uri即可看到之前上传的图片

上传的图片

整合SpringBoot

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

推荐阅读更多精彩内容