`

Ubuntu下FastDFS安装配置记录

阅读更多

一、FastDFS简介

FastDFS是一个个人开发的、轻量级的、开源的分布式文件系统,纯C语言编写,其功能包括:文件存储、文件同步、文件访问(文件上传、文件下载)等,解决了大容量存储和负载均衡的问题,具有稳定、高效、易用的优点。

 

更多详见:FastDFS主页:http://code.google.com/p/fastdfs/

作者为版主的讨论区:http://linux.chinaunix.net/bbs/forum-75-1.html

 

二、安装环境

1、操作系统:Ubuntu9.10 32bit

2、部署结构:1个tracker、1个storage(1组),PC单机(即tracker、storage均在同一台电脑上)

 

三、安装过程

官方安装文档:http://code.google.com/p/fastdfs/wiki/Setup

 

1、获取安装包:从项目主页(http://code.google.com/p/fastdfs/downloads/list )下载部署包 FastDFS_v1.29.tar.gz (FastDFS Server with PHP client extension source code V1.29, 2010-6-30最新发布版本)。

2、解压安装包,然后切换到解压后的 FastDFS 主目录执行安装,即依次执行:

tar xzf FastDFS_v1.29.tar.gz
cd FastDFS
./make.sh
./make.sh install

注意:
1)如果无法执行,则需要先安装gcc,Ubuntu系统可通过:sudo apt-get install gcc 安装。
2)Ubuntu系统上安装时需要将 make.sh 最后一段if去掉(从 if [ "$uname" = "Linux" ]; then 开始到倒数第2行),否则 ./make.sh install 时会报错。
3)执行./make.sh install时可能需要 root 权限。

 

3a、配置tracker

1)在FastDFS主目录的 conf 目录下有配置文件样例 tracker.conf,打开该文件,找到下列片段,红色 部分根据实际情况进行修改:

# the base path to store data and log files
base_path=/home/yuqing/fastdfs

 

2)启动tracker服务:
命令格式:/usr/local/bin/fdfs_trackerd <tracker_conf_filename>

实例:/usr/local/bin/fdfs_trackerd /FastDFS/conf/tracker.conf

 

3b、配置storage

1)在FastDFS主目录的 conf 目录下有配置文件样例 storage.conf,打开该文件,找到下列片段,红色 部分根据实际情况进行修改:

# the base path to store data and log files
base_path=/home/yuqing/fastdfs

 

# store_path#, based 0, if store_path0 not exists, it's value is base_path
# the paths must be exist
store_path0=/home/yuqing/fastdfs
#store_path1=/home/yuqing/fastdfs2

 

# tracker_server can ocur more than once, and tracker_server format is
#  "host:port", host can be hostname or ip address
tracker_server=192.168.209.121:22122

 

2)启动storage服务:
命令格式:/usr/local/bin/fdfs_storaged <storage_conf_filename>

实例:/usr/local/bin/fdfs_storaged /FastDFS/conf/storage.conf

第1次启动将会在所设置的存储路径下创建256个子文件夹,需要一些时间。

 

3)运行监控程序:
命令格式:/usr/local/bin/fdfs_monitor <storage_conf_filename>

实例:/usr/local/bin/fdfs_monitor /FastDFS/conf/storage.conf  

控制台将会显示存储服务器的一些信息,类似如下:

base_path=/FastDFS/logs, connect_timeout=30, network_timeout=60, tracker_server_count=1, anti_steal_token=0, anti_steal_secret_key length=0
server_count=1, server_index=0

tracker server is 127.0.0.1:22122

group count: 1

Group 1:
group name = group1
free space = 42 GB
storage server count = 1
active server count = 1
storage_port = 23000
storage_http_port = 8888
store path count = 1
subdir count per path= 256
current write server index = 0

	Host 1:
		ip_addr = 127.0.0.1 (localhost)  ACTIVE
		http domain = 
		version = 1.29
		up time = 2010-07-20 16:52:44
		total storage = 49GB
		free storage = 42GB
		upload priority = 10
		store_path_count = 1
		subdir_count_per_path = 256
		storage_port = 23000
		storage_http_port = 8888
		current_write_path = 0
		source ip_addr = 
		total_upload_count = 2
		success_upload_count = 2
		total_set_meta_count = 0
		success_set_meta_count = 0
		total_delete_count = 0
		success_delete_count = 0
		total_download_count = 0
		success_download_count = 0
		total_get_meta_count = 0
		success_get_meta_count = 0
		total_create_link_count = 0
		success_create_link_count = 0
		total_delete_link_count = 0
		success_delete_link_count = 0
		last_heart_beat_time = 2010-07-20 17:23:31
		last_source_update = 2010-07-20 17:16:43
		last_sync_update = 1970-01-01 08:00:00
		last_synced_timestamp= 1970-01-01 08:00:00
 

 

4、测试安装是否成功,上传一个文件:

1)在 storage 服务器上 ,通过提供的命令行工具进行上传:

命令格式:/usr/local/bin/fdfs_test <storage_conf_filename> <operation>

实例:/usr/local/bin/fdfs_test /FastDFS/conf/storage.conf   upload /home/x.zip 

控制台将会一些信息,类似如下:

This is FastDFS client test program v1.29

Copyright (C) 2008, Happy Fish / YuQing

FastDFS may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDFS source kit.
Please visit the FastDFS Home Page http://www.csource.org/ 
for more detail.

base_path=/FastDFS/logs, connect_timeout=30, network_timeout=60, tracker_server_count=1, anti_steal_token=0, anti_steal_secret_key length=0
group_name=group1, ip_addr=127.0.0.1, port=23000
storage_upload_by_filename
group_name=group1, remote_filename=M00/00/00/fwAAAUxFaXsAAAAAACkHPTYooKs470.zip
source ip address: 127.0.0.1
file timestamp=2010-07-20 17:16:43
file size=2688829
file url: http://127.0.0.1/group1/M00/00/00/fwAAAUxFaXsAAAAAACkHPTYooKs470.zip
storage_upload_slave_by_filename
group_name=group1, remote_filename=M00/00/00/fwAAAUxFaXsAAAAAACkHPTYooKs470_big.zip
source ip address: 127.0.0.1
file timestamp=2010-07-20 17:16:43
file size=2688829
file url: http://127.0.0.1/group1/M00/00/00/fwAAAUxFaXsAAAAAACkHPTYooKs470_big.zip

 

至此,基本的安装已经成功。

 

说明:
1)在 tracker 和 storage 服务器是相互独立的情况下,在完成安装步骤的1-2后,第3步根据是 tracker 或 storage 而分别执行对应的 3a 或 3b 步骤即可。

2)storage 服务器是以心跳的方式主动向 tracker 服务器汇报自己的信息的,所以启动 tracker 和 storage 的顺序是任意的。

分享到:
评论

相关推荐

    ubuntu安装配置fastdfs详细教程.pdf

    根据给定文件的标题、描述和部分内容,下面我将详细解释Ubuntu下安装配置FastDFS文件存储服务器的过程。 FastDFS是一个开源的轻量级分布式文件系统,它对文件进行管理,并提供文件的存储和访问。由于其高性能和易于...

    Redhat下Fastdfs安装配置及nginx模块安装配置文档.pdf

    在本文档中,我们详细讨论了如何在Redhat操作系统上安装和配置FastDFS以及其Nginx模块。FastDFS是一个开源的高性能、轻量级的分布式文件系统,主要用于解决大容量存储和负载均衡的问题。以下是安装和配置FastDFS及其...

    Ubuntu安装FastDFS.md

    讲述了如何安装FastDFS

    FastDFS安装和配置过程

    ### FastDFS安装与配置详解 #### 一、FastDFS简介 FastDFS是一个高效的分布式文件系统,主要用于海量数据存储,能够实现文件的快速存取。它由淘宝的技术团队开发,主要适用于互联网环境下大流量高并发的场景。...

    fastdfs在ubuntu上的部署配置

    总之,部署FastDFS在Ubuntu上涉及多个步骤,包括下载和安装依赖库、配置FastDFS和Nginx,以及启动和测试服务。理解每个组件的作用和配置选项对于成功部署至关重要。在整个过程中,注意文件路径、端口和配置文件的...

    Ubuntu+fastdfs+nginx

    在实际部署过程中,我们需要先在Ubuntu服务器上安装和配置FastDFS,这通常涉及创建用户组、安装依赖、配置tracker和storage节点,以及启动和测试FastDFS服务。接着,安装Nginx并配置FastDFS的连接模块(例如:...

    fastdfs 安装配置所需的安装包

    fastdfs 安装配置所需的安装包 FastDFS_v5.02.tar.gz fastdfs-nginx-module_v1.15.tar.gz nginx-1.4.7.tar.gz ngx_cache_purge-2.1.tar.gz pcre-8.34.tar.gz zlib-1.2.8.tar.gz 安装方法:...

    ubuntu16.04搭建FASTDFS图片服务器,并配置nginx

    在本文中,我们将深入探讨如何在Ubuntu 16.04操作系统上搭建一个基于FASTDFS的图片服务器,并进一步配置Nginx作为反向代理。FASTDFS是一个轻量级的开源文件系统,专为互联网设计,尤其适合存储大量小文件,如图片、...

    ubuntu下FastDFS+Nginx部署

    以上就是Ubuntu下部署FastDFS和Nginx的基本步骤和相关知识点。这个过程涉及了Linux系统管理、软件包安装、网络配置、文件服务以及系统安全等多个方面,对提升运维技能十分有益。在实际操作中,可能会遇到各种问题,...

    FastDFS安装配置手册

    《FastDFS安装配置手册》 FastDFS是一款开源的高性能、轻量级的分布式文件系统,主要解决大容量存储和负载均衡的问题,尤其适合图片、视频等大量文件存储。FastDFS为互联网应用提供了一个高效的文件存储解决方案,...

    Ubuntu下安装并配置FastDFS.rar

    在Ubuntu系统中安装和配置FastDFS是一个常见的任务,特别是在搭建分布式文件系统时。FastDFS是一个开源的、轻量级的高性能文件系统,专为互联网设计,支持大量的小文件存储。以下将详细介绍如何在Ubuntu上进行安装和...

    FastDFS和Linux下安装使用FastDFS 安装Nginx 分布式文件系统.docx

    【在Linux环境下安装和使用FastDFS】 在Linux系统中部署FastDFS通常涉及以下步骤: 1. 安装必要的依赖库,如libevent、libcurl等。 2. 下载FastDFS的源码包并解压。 3. 配置编译环境,执行make和make install。 4. ...

    ubuntu下FastDFS+Nginx部署.pdf

    【FastDFS+Nginx在Ubuntu下的部署】 FastDFS是一款开源的高性能、轻量级的分布式文件系统,主要用于解决大容量存储和负载均衡的问题。Nginx作为一款强大的反向代理和负载均衡服务器,常与FastDFS配合使用,提供HTTP...

    FastDFS需要的配置需要软件和配置说明

    在安装过程中,需要配置FastDFS的安装路径、数据存储路径等信息。 3. **配置FastDFS**:修改`/etc/fdfs`目录下的`tracker.conf`和`storage.conf`文件。`tracker.conf`是追踪服务器的配置,包含服务器的IP、端口等...

    FastDFS集群配置文件

    现在,我们将深入探讨如何配置FastDFS集群,以及相关配置文件的作用。 首先,我们来看标题中的“FastDFS集群配置文件”。一个FastDFS集群通常包括Tracker服务器和Storage服务器。Tracker服务器负责调度任务,...

    fastDFS客户端配置文件

    FastDFS客户端配置文件,主要是为了配置FastDFS服务器的ip地址

    ubuntu安装nginx+fastdfs.zip

    ubuntu离线部署nginx+fastdfs软件包 autoconf-latest.tar.gz automake-1.15.tar.gz fastdfs-5.11.tar.gz fastdfs-nginx-module-1.20.tar.gz libfastcommon-1.0.38.tar.gz m4-1.4.18.tar.gz openssl-1.1.0j.tar.gz ...

    fastdfs安装程序集合:fastdfs安装需要的所有程序

    4. 安装fastdfs-nginx-module:将该模块源码添加到Nginx的源码目录下,重新配置Nginx并编译,确保模块被编译进Nginx。 5. 配置FastDFS和Nginx:根据FastDFS和fastdfs-nginx-module的配置文件模板,进行相应的配置,...

Global site tag (gtag.js) - Google Analytics