Linux下FastDFS 安装

官方

https://github.com/happyfish100/fastdfs/wiki

安装编译环境

yum install git gcc gcc-c++ make automake vim wget libevent -y

安装libfastcommon 基础库

cd /user/local
mkdir fastdfs
cd fastdfs
git clone https://github.com/happyfish100/libfastcommon.git --depth 1

cd libfastcommon/
./make.sh && ./make.sh install

在这里插入图片描述

安装FastDFS

get https://github.com/happyfish100/fastdfs/archive/V5.11.tar.gz
tar -zxvf V5.11.tar.gz
cd fastdfs-5.11
./make.sh && ./make.sh install

配置文件准备

cp /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf
cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf
cp /etc/fdfs/client.conf.sample /etc/fdfs/client.conf
cp /usr/local/fastdfs/fastdfs-5.11/conf/http.conf /etc/fdfs
cp /usr/local/fastdfs/fastdfs-5.11/conf/mime.types /etc/fdfs

在这里插入图片描述

修改配置文件

tracker.conf

  • vim /etc/fdfs/tracker.conf
#需要修改的内容如下
port=22122
base_path=/home/fastdfs

在这里插入图片描述

storage.conf

  • vim /etc/fdfs/storage.conf
#需要修改的内容如下
port=23000
base_path=/home/fastdfs # 数据和日志文件存储根目录
store_path0=/home/fastdfs # 第一个存储目录
tracker_server=192.168.181.135:22122
# http访问文件的端口(默认8888,看情况修改,和nginx中保持一致)
http.server_port=8888

启动

mkdir /home/fastdfs -p
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart

查看所有运行的端口
netstat -ntlp

在这里插入图片描述

测试

修改client.conf

vim /etc/fdfs/client.conf
#需要修改的内容如下
base_path=/home/fastdfs
#tracker服务器IP和端口
tracker_server=192.168.211.136:22122

在这里插入图片描述

[root@localhost local]# /usr/bin/fdfs_upload_file /etc/fdfs/client.conf 1.png 
group1/M00/00/00/wKi1h190MPiAC-OnAACGZa9JdFo144.png
[root@localhost local]# /usr/bin/fdfs_upload_file /etc/fdfs/client.conf timg.jpg 
group1/M00/00/00/wKi1h190MU-AeLd4AABr19IkLmI850.jpg


安装fastdfs-nginx-module

在这里插入图片描述

fastdfs-nginx-module

cd  /usr/local/fastdfs
wget https://github.com/happyfish100/fastdfs-nginx-module/archive/V1.20.tar.gz
解压
tar -xvf V1.20.tar.gz
cd fastdfs-nginx-module-1.20/src
vim config
修改第5 行 和 15 行 修改成
ngx_module_incs="/usr/include/fastdfs /usr/include/fastcommon/"
CORE_INCS="$CORE_INCS /usr/include/fastdfs /usr/include/fastcommon/"
cp mod_fastdfs.conf /etc/fdfs/
vim /etc/fdfs/mod_fastdfs.conf
#需要修改的内容如下
tracker_server=192.168.211.136:22122
url_have_group_name=true
store_path0=/home/fastdfs
mkdir -p /var/temp/nginx/client

安装nginx

未安装过
wget http://nginx.org/download/nginx-1.15.6.tar.gz
tar -zxvf nginx-1.15.6.tar.gz
cd nginx-1.15.6/
yum -y install pcre-devel openssl openssl-devel
# 添加fastdfs-nginx-module模块
./configure --add-module=/usr/local/fastdfs/fastdfs-nginx-module-1.20/src
编译安装
make && make install
查看模块是否安装上
/usr/local/nginx/sbin/nginx -V
安装过Nginx

进入nginx源码目录

./configure --add-module=/usr/local/fastdfs/fastdfs-nginx-module-1.20/src
make
cp  objs/nginx  /usr/local/nginx/sbin/ 
/usr/local/nginx/sbin/nginx -V

nginx添加


    #添加如下配置
    server {
    
    
        listen 8888;
        server_name localhost;
        location ~/group[0-9]/ {
    
    
          ngx_fastdfs_module;
        }
    }


在这里插入图片描述

/usr/local/nginx/sbin/nginx -s reload

在这里插入图片描述
访问图片
在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/ko0491/article/details/108884243