参考文献:http://dorole.com/tag/fastdfs/
安装编译环境
[html] view plain copy
yum -y groupinstall 'Development Tools'
yum -y install wget
下载安装libfastcommon
[html] view plain copy
git clone https://github.com/happyfish100/libfastcommon.git
cd libfastcommon/
./make.sh
./make.sh install
下载安装fastdfs
[html] view plain copy
https://github.com/happyfish100/fastdfs/archive/V5.05.tar.gz
tar -zxvf V5.05.tar.gz
cd fastdfs-5.05/
./make.sh
./make.sh install
修改配置文件
创建目录,存储日志和数据,如下
[html] view plain copy
-data
-fdfs
-tracker
-storage
-client
配置tracker
[html] view plain copy
cd /etc/fdfs
mv tracker.conf.sample tracker.conf
vi tracker.conf
//...
base_path=/data/fdfs/tracker
//...
配置storage
[html] view plain copy
cd /etc/fdfs
mv storage.conf.sample storage.conf
vi storage.conf
//...
base_path=/data/fdfs/storage
store_path0=/data/fdfs/storage
tracker_server=192.168.153.130:22122
//...
配置client
[html] view plain copy
cd /etc/fdfs
mv client.conf.sample client.conf
vi client.conf
//...
base_path=/data/fdfs/client
tracker_server=192.168.153.130:22122
//...
启动tracker和storage
[html] view plain copy
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf
可通过日志查看是否启动成功
[html] view plain copy
tail -f /data/fdfs/storage/logs/storaged.log
tail -f /data/fdfs/tracker/logs/trackerd.log
测试
利用dfds自带的测试类进行测试
[html] view plain copy
/usr/bin/fdfs_test /etc/fdfs/client.conf upload /home/lily/a.txt
/usr/bin/fdfs_download_file /etc/fdfs/client.conf group1/M00/00/00/wKiZglauvkmANC2wAAAAPpWmuhI171.txt
/usr/bin/fdfs_delete_file /etc/fdfs/client.conf group1/M00/00/00/wKiZglauvkmANC2wAAAAPpWmuhI171.txt