博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
fastdfs_nginx整合
阅读量:6708 次
发布时间:2019-06-25

本文共 1207 字,大约阅读时间需要 4 分钟。

环境:fastDFS_5.04 nginx_1.4.7,CentOS 6 64位

1.在此之前你应该安装成功了fastDFS了

2.安装nginx

3.下载 FastDFS-nginx模块

官方下载:

解压文件:

tar xzf fastdfs_nginx_module_v1.05.tar.gz

4.进入nginx文件夹。编译

./configure --add-module=/home/fastdfs-nginx-module/srcmake;make install;

5.配置/home/fastdfs-nginx-module/src/mod_fastdfs.conf

 

#192.168.1.239是我自己电脑的tracker_server地址tracker_server=192.168.1.239:22122 #如果访问路径中有group1,设置url_have_group_name为true,默认为false url_have_group_name=true #设置storage的路径,可以设置多个,如果多个需要设置store_path_count=数量 store_path0=/home/leunpha/storage/data

 6.复制/home/fastdfs-nginx-module/src/mod_fastdfs.conf 到/etc/fdfs/目录下

cp /home/fastdfs-nginx-module/src/mod_fastdfs.conf /etc/fdfs/

7.配置nginx.conf

配置${nginx_home}/conf/nginx.conf,在server中添加

     #group1这儿可以配置成正则          location /group1/M00 {            #root /home/leunpha/storage/data;            ngx_fastdfs_module;        }

8.添加软连接

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

9.启动nginx 

#启动/usr/local/nginx/sbin/nginx ##其他命令#关闭/usr/local/nginx/sbin/nginx -s stop#重新加载/usr/local/nginx/sbin/nginx -s reload

然后访问http://192.168.1.239/group1/M00/00/00/wKgB71u7sZCAYPwoAAzUD9gIb9c.tar.gz应该就可以了。

转载于:https://www.cnblogs.com/zhoujingjie/articles/fastdfs_nginx.html

你可能感兴趣的文章
SAMBA服务器
查看>>
[tomcat9]This is very likely to create a memory leak. Stack trace of thread
查看>>
枚举原理与常见用法与技巧
查看>>
Linux Shell常用技巧(十)
查看>>
确定linux操作系统32位还是64位
查看>>
html学习笔记
查看>>
希赛2012软考《网络工程师》笔记(第四部分:知识产权与标准化)
查看>>
windows server 2008 r2 忘记域管理员密码的解决办法
查看>>
Centos 5.5 上面安装Open×××完整版上篇【服务端配置】
查看>>
一个高性能无锁非阻塞链表队列
查看>>
市场or市值-Android和IOS浅谈
查看>>
我的友情链接
查看>>
ubuntu上从mysql中用命令行备份出数据库
查看>>
Linux的哈希命令
查看>>
linux find命令之xargs的用法
查看>>
Visio2007也能画立体机房效果图
查看>>
Oracle job 时间间隔
查看>>
黑马程序员----Java基础:Set
查看>>
IOS性能调优系列:使用Instruments动态分析内存泄漏,调优instruments
查看>>
0820上线经验总结
查看>>