FastDFS分布式文件服务器安装,及配置,测试

一、FastDFS简介:

FastDFS是一款类Google FS的开源分布式文件系统,它用纯C语言实现,支持Linux、FreeBSD、AIX等UNIX系统。它只 能通过 专有API对文件进行存取访问,不支持POSIX接口方式,不能mount使用。准确地讲,Google FS以及FastDFS、mogileFS、 HDFS、TFS等类Google FS都不是系统级的分布式文件系统,而是应用级的分布式文件存储服务。

FastDFS是一个开源的轻量级分布式文件系统,它对文件进行管理,功能包括:文件存储、文件同步、文件访问(文件上传、文件下载)等,解决了大容量存储和负载均衡的问题。特别适合以文件为载体的在线服务,如相册网站、视频网站等等。

二、FastDFS安装

wget

tar -zxvf FastDFS_v3.03.tar.gz

cd FastDFS

vim make.sh 将#WITH_HTTPD=1 修改成WITH_HTTPD=1 以支持 http

./make.sh && ./make.sh install

三、FastDFS配置

1、配置及启动Tracker Server

mkdir /home/fastdfs

vi /etc/fdfs/tracker.conf

base_path=/home/yuqing/fastdfs  修改为:base_path=/home/fastdfs

##include http.conf  修改为:#include http.conf

/usr/local/bin/fdfs_trackerd /etc/fdfs/tracker.conf

检查tracker是否启动成功,可以查看如下文件/home/fastdfs/logs/trackerd.log

2、配置及启动Storage Server

mkdir /home/fastdfs/fdfs_storage

cd /etc/fdfs

vim storage.conf

或者 vim /etc/fdfs/storage.conf

base_path=/home/yuqing/fastdfs 修改为: /home/fastdfs/fdfs_storage

store_path0=/home/yuqing/fastdfs 修改为: store_path0=/home/fastdfs/fdfs_storage

tracker_server=192.168.209.121:22122 修改为 tracker_server=10.201.20.237:22122

##include http.conf  修改为:#include http.conf

/usr/local/bin/fdfs_storaged /etc/fdfs/storage.conf

接下来会出现很多mkdir data path,这是系统在创建数据目录。

FastDFS分布式文件服务器安装,及配置,测试

3.配置PHP扩展

cd php_client

phpize

./configure--with-php-config=/usr/local/php/bin/php-config

make && make install

cat fastdfs_client.ini >> /usr/local/php/etc/php.ini

/usr/local/apache2/bin/apachectl restart

cp fastdfs_test.php /home/wwwroot/

vim /usr/local/php/etc/php.ini 可以看到fastdfs_clicet.so已经加载到php.ini中

FastDFS分布式文件服务器安装,及配置,测试

查看phpinfo()

FastDFS分布式文件服务器安装,及配置,测试

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/0113049f45138e584e01a212e2524f0b.html