FastDFS是一款类Google FS的开源分布式文件系统,它用纯C语言实现,支持Linux、FreeBSD、AIX等UNIX系统。它只能通过专有API对文件进行存取访问,不支持POSIX接口方式,不能mount使用。准确地讲,Google FS以及FastDFS、mogileFS、HDFS、TFS等类Google FS都不是系统级的分布式文件系统,而是应用级的分布式文件存储服务。
网站建设哪家好,找创新互联建站!专注于网页设计、网站建设、微信开发、小程序定制开发、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了峨眉山免费建站欢迎大家使用!FastDFS集群中的Tracker server也可以有多台,Tracker server和Storage server均不存在单点问题。Tracker server之间是对等关系,组内的Storage server之间也是对等关系。传统的Master-Slave结构中的Master是单点,写操作仅针对Master。如果Master失效,需要将Slave提升为Master,实现逻辑会比较复杂。和Master-Slave结构相比,对等结构中所有结点的地位是相同的,每个结点都是Master,不存在单点问题。
在卷中增加服务器时,同步已有的文件由系统自动完成,同步完成后,系统自动将新增服务器切换到线上提供服务。
名称 | 角色 | IP地址 |
---|---|---|
centos7-1 | tracker | 192.168.45.135 |
centos7-2 | storage+nginx | 192.168.45.132 |
链接:https://pan.baidu.com/s/1_Xs09mdST6VNLue11dqhyQ
提取码:9ql5
一台改为tracker,一台改为storage
hostnamectl set-hostname tracker storage
su
yum -y install libevent libevent-devel perl make gcc zlib zlib-devel pcre pcre-devel gcc-c++ openssl-devel
mount.cifs //192.168.100.3/lzp /mnt
#安装libfastcommon服务
cd /mnt/fastDFS/
tar zxvf libfastcommon-1.0.39.tar.gz -C /opt
cd /opt/libfastcommon-1.0.39/
#编译安装并建立软链接以方便系统识别
./make.sh && ./make.sh install
ln -s /usr/lib64/libfastcommon.so /usr/local/lib/libfastcommon.so
ln -s /usr/lib64/libfdfsclient.so /usr/local/lib/libfdfsclient.so
ln -s /usr/lib64/libfdfsclient.so /usr/lib/libfdfsclient.so
cd /mnt/fastDFS/
tar zxvf fastdfs-5.11.tar.gz -C /opt
#编译安装
cd /opt/fastdfs-5.11/
./make.sh && ./make.sh install
cd /etc/fdfs/
cp tracker.conf.sample tracker.conf
cp storage.conf.sample storage.conf
cp client.conf.sample client.conf
# 建立数据文件、日志文件存放目录
[root@tracker ~]# mkdir -m 755 -p /opt/fastdfs
修改tracker配置文件
[root@tracker ~]# vim /etc/fdfs/tracker.conf
#修改以下配置
#port=22122 //tracker服务默认端口22122即可
base_path=/opt/fastdfs //22行tracker存储data和log的跟路径,必须提前创建好tracker存储data和log的跟路径,必须提前创建好
#http.server_port=8080 //tracker服务器上启动http服务进程,没装忽略
#开启服务
fdfs_trackerd /etc/fdfs/tracker.conf start
#设置开机自启
[root@tracker ~]# vim /etc/rc.local
#末行添加
fdfs_trackerd /etc/fdfs/tracker.conf start
#关闭防火墙和安全功能
[root@tracker ~]# systemctl stop firewalld
[root@tracker ~]# setenforce 0
#建立数据文件、日志文件存放目录
[root@storage ~]# mkdir -m 755 -p /opt/fastdfs
修改storage配置文件
[root@storage ~]# vim /etc/fdfs/storage.conf
#修改以下配置
group_name=group1 //默认组名,根据实际情况修改
port=23000 //storge默认23000,同一个组的storage端口号必须一致
base_path=/opt/fastdfs //storage日志文件的根路径
store_path_count=1 //与下面路径个数相同,默认为1
store_path0=/opt/fastdfs //109提供的存储路径(默认与日志文件存放在一起)
tracker_server=192.168.45.135:22122 //自己的tracker服务器IP(重点!!!)
http.server_port=80 //http访问文件的端口默认为8888,nginx中配置的监听端口保持一致
开启服务并设置开机自启
#开启服务(命令支持start|stop|restart)
[root@storage ~]# fdfs_storaged /etc/fdfs/storage.conf start
[root@storage ~]# netstat -atnp | grep 23000
tcp 0 0 0.0.0.0:23000 0.0.0.0:* LISTEN 40430/fdfs_storaged
#设置开机自启
[root@storage ~]# vim /etc/rc.local
#末行添加
fdfs_storaged /etc/fdfs/storage.conf start
[root@storage ~]# systemctl stop firewalld
[root@storage ~]# setenforce 0
检查是否与tracker监控端关联成功
fdfs_monitor /etc/fdfs/storage.conf
这里为了减少虚拟机开启的数量,就在storage端进行nginx的安装
cd /mnt/fastDFS/
[root@storage fastDFS]# tar zxvf nginx-1.12.0.tar.gz -C /opt
tar zxvf fastdfs-nginx-module-1.20.tar.gz -C /opt
# 修改/opt/fastdfs-nginx-module-1.20/src/config文件
[root@storage fastDFS]# vim /opt/fastdfs-nginx-module-1.20/src/config
ngx_module_incs="/usr/include/fastdfs /usr/include/fastcommon/"
CORE_INCS="$CORE_INCS /usr/include/fastdfs /usr/include/fastcommon/"
#编译安装
cd /opt/nginx-1.12.0/
[root@storage nginx-1.12.0]# ./configure \
--prefix=/usr/local/nginx \
--add-module=/opt/fastdfs-nginx-module-1.20/src/
make && make install
cd /opt/fastdfs-nginx-module-1.20/src
cp mod_fastdfs.conf /etc/fdfs/
#修改fastdfs-nginx-module模块配置文件mod-fasts.conf
[root@storage nginx-1.12.0]# cd /etc/fdfs
[root@storage fdfs]# vim mod_fastdfs.conf
#检查一下配置
base_path=/opt/fastdfs //存放数据文件、日志的路径
tracker_server=192.168.45.135/:22122 //tracker端的地址(重点!!!)
url_have_group_name = true //url是否包含group名称
storage_server_port=23000 //需要和storage配置的相同
store_path_count=1 //存储路径个数,需要和store_path个数匹配
store_path0=/opt/fastdfs //62行文件存储的位置
#修改nginx配置文件
[root@storage fdfs]# vim /usr/local/nginx/conf/nginx.conf
#server中空行处添加
location ~/M00 {
root /opt/fastdfs/data;
ngx_fastdfs_module;
}
#创建软链接
[root@localhost ~]# ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
#检车nginx配置文件
[root@localhost ~]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
#启动nginx
[root@localhost ~]# nginx
#拷贝fastdfs解压目录中的http.conf和mime.types不做这步可能会导致报错
[root@storage fdfs]# cd /opt/fastdfs-5.11/conf/
[root@storage conf]# cp mime.types http.conf /etc/fdfs/
#修改配置文件
[root@storage ~]# vim /etc/fdfs/client.conf
#检查以下配置
base_path=/opt/fastdfs //tracker服务器文件路径
tracker_server=192.168.45.135:22122 //tracker服务器IP地址和端口号
http.tracker_server_port=8080 // tracker服务器的http端口号,必须和
/usr/bin/fdfs_upload_file <config_file> <local_filename>
命令演示:
[root@localhost mnt]# /usr/bin/fdfs_upload_file /etc/fdfs/client.conf 1.jpg
group1/M00/00/00/wKgthF4AKVmAY9WYABIrwU4wXNs537.jpg
/usr/bin/fdfs_download_file <config_file> <file_id> [local_filename]
示例
/usr/bin/fdfs_download_file /etc/fdfs/client.conf group1/M00/00/00/wKiOTV354W2AIf7GAAAAEh4TEws726.jpg test2.jpg**
/usr/bin/fdfs_delete_file <config_file> <file_id>
实例:
fdfs_delete_file /etc/fdfs/client.conf group1/M00/00/00/wKiOTV354W2AIf7GAAAAEh4TEws726.jpg
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。