本人从事 linux nginx mysql php 开发多年,联系v:luhuang2003 ,希望接触到更新的web开发软件,开此博客希望能把自己的经验和接触的东西与大家进行共享。
分类: web开发
2013-05-18 17:10:20
nginx 是一个高性能的 http 和 反向代理 服务器,也是一个 imap/pop3/smtp 代理服务器。 nginx 是由 igor sysoev 为俄罗斯访问量第二的 rambler.ru 站点开发的,它已经在该站点运行超过两年半了。
1、下载 nginx fastdfs 模块
文件我下载到了: /software/fastdfs/ 目录下
nginx 安装参考:
注: 在第四步的时候: 改下编译参数:
./configure –prefix=/usr/local/nginx_fastdfs –with-pcre=/software/nginx/pcre-8.32 –add-module=/software/fastdfs/fastdfs-nginx-module/src
make
make install
编译下文件
vim /etc/fdfs/mod_fastdfs.conf
# the base path to store log files
base_path=/data1/fastdfs ====> 放置log的目录
# “host:port”, host can be hostname or ip address
tracker_server=192.168.3.220:22122 ====> tracker server的ip和端口,此处可以写多个tracker server,每行一个
# the group name of storage server
group_name=group1 ====> 此台storage server所属的服务器组名 可以不配置
# default value is false
url_have_group_name = false #====> 在url中包含group名称 group1/m00/xxx
# store_path#, based 0, if store_path0 not exists, it’s value is base_path
# the paths must be exist
store_path0=/data1/fastdfs #====> 放置文件的目录
store_path_count=3
store_path0=/data1/fastdfs/store0
store_path1=/data1/fastdfs/store1
store_path2=/data1/fastdfs/store2
修改 模块 配置文件
vi /usr/local/nginx_fastdfs/conf/nginx.conf
location /m00 {
root /data1/fastdfs/store0/data;
ngx_fastdfs_module;
}
location /m01 {
root /data1/fastdfs/store1/data;
ngx_fastdfs_module;
}
location /m02 {
root /data1/fastdfs/store2/data;
ngx_fastdfs_module;
}
启动nginx /usr/local/nginx_fastdfs/sbin/nginx
上传文件 用浏览器 访问 如果正确安装成功。