tracker 192.168.1.251
storage 192.168.1.252
安装过程基本基于FastDFS的tar.gz包里的 INSTALL 文件来做的。
1.在安装FastDFS之前需要先安装libfastcommon.(附上 下载地址https://github.com/happyfish100/libfastcommon.git)
2.现在源码包并解压。
(下载地址https://github.com/happyfish100/fastdfs/archive/V5.05.tar.gz)
相关命令:
cd /usr/local/src/
wget https://github.com/happyfish100/fastdfs/archive/V5.05.tar.gz
tar xzf FastDFS_v5.05.tar.gz
3.进入FastDFS的目录 并 编译 安装
cdFastDFS_v5.05
./make.sh
./make.sh install
根据自己需要,tracker 的 base-path 为自己想要存放日志的地方,其中store_lookup:负载分配机制,2表示选择存储空间最大的组来保存文件。storage需要修改trackerserver=192.168.1.252:22122,以及base-path。以及client.conf需要指定tarcker的IP地址。
5.启动服务
#start the tracker server:
/sbin/service fdfs_trackerd start
#start the storage server:
/sbin/service fdfs_trackerd start
6.测试能否上传成功
/usr/bin/fdfs_test conf/client.conf upload /usr/include/stdlib.h fdfs_test按照conf/client.conf的配置来上/usr/local/stdlib.h
上传成功返回一个URL(http://..... ),可以通过这个URL来访问上传的资源。
在能成功访问之前需要Nginx
Nginx部分:
1.首先需要安装Nginx:
wget http://Nginx.org/download/Nginx-1.10.0.tar.gz
tar -zxvf Nginx-1.10.0.tar.gz
rm -rf Nginx-1.10.0.tar.gz
cd /tmp/Nginx-1.10.0
./configure --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_perl_module
make && make install
ln -sv /usr/local/Nginx/sbin/Nginx /usr/sbin
2.然后需要下载FastDFS Nginx module,未找到版本高于1.16的tar.gz的包,所以用了1.16(https://sourceforge.net/projects/fastdfs/files/FastDFS%20Nginx%20Module%20Source%20Code/fastdfs-Nginx-module_v1.16.tar.gz)下载完以后,解压,然后到Nginx的目录下,编译加入新的模块。
相关命令:
cd /tmp
tar -zxvffastdfs_Nginx_module_v1.16.tar.gz
cd Nginx-1.10.0
./configure --add-module=/tmp/fastdfs-Nginx-module/src
make; make install
location /group1/M00 {
root /home/fastdfs/data;
ngx_fastdfs_module;
}
4.创建符号链接ln -s /home/fastdfs/data /home/astdfs/data/M00
5.修改/etc/fdfs/mod_fastdfs.conf
base_path=/home/storage ====> 放置log的目录
tracker_server=192.168.1.251:22122 ====> tracker server的ip和端口,此处可以写多个tracker server,每行一个
group_name=group1 ====> 此台storage server所属的服务器组名
url_have_group_name = true ====> 在URL中包含group名称
store_path0=/home/storage ====> 放置文件的目录
6.重启Nginx服务
/usr/local/Nginx/sbin/Nginx -s stop; /usr/local/Nginx/sbin/Nginx
原文链接:https://www.f2er.com/centos/380904.html