FastDFS分布式文件管理系统集群
一. 硬件准备
```
2台tracker跟踪服务器
192.168.1.101
192.168.1.102
4台storage存储服务器
192.168.1.201
192.168.1.202
192.168.1.203
192.168.1.204
```
二. 安装准备
```
yum -y groupinstall 'Development Tools'
yum -y install wget
```
1. 安装libfastcommon
```
cd ~
git clone https://github.com/happyfish100/libfastcommon.git
cd libfastcommon/
./make.sh
./make.sh install
```
2. 安装fastdfs
```
cd ~
wget https://github.com/happyfish100/fastdfs/archive/V5.08.tar.gz
tar -zxvf V5.08.tar.gz
cd fastdfs-5.08
./make.sh
./make.sh install
```
3. 创建目录
```
mkdir /data/
mkdir /data/fdfs
mkdir /data/fdfs/client
mkdir /data/fdfs/s