美文网首页
fastdfs编译安装

fastdfs编译安装

作者: 青风野客 | 来源:发表于2019-05-29 16:20 被阅读0次

docker部署

tracker安装(192.168.1.177)

  [root@localhost usr]# unzip libfastcommon-master.zip
  [root@localhost usr]# cd libfastcommon-master
  [root@localhost usr]# ./make.sh
  [root@localhost usr]# ./make.sh install
  [root@localhost usr]# yum install perl 
  • 编译安装fastdfs
 [root@localhost usr] # tar -zxvf fastdfs-5.08.tar.gz
  [root@localhost usr] # cd fastdfs-5.08
  [root@localhost fastdfs-5.08] # ./make.sh
  [root@localhost fastdfs-5.08] # ./make.sh  install
  [root@localhost fastdfs-5.08]# ./make.sh  install
  mkdir -p /usr/bin
  mkdir -p /etc/fdfs
  cp -f fdfs_trackerd /usr/bin
  if [ ! -f /etc/fdfs/tracker.conf.sample ]; then cp -f ../conf/tracker.conf /etc/fdfs/tracker.conf.sample; fi
  mkdir -p /usr/bin
  mkdir -p /etc/fdfs
  cp -f fdfs_storaged  /usr/bin
  if [ ! -f /etc/fdfs/storage.conf.sample ]; then cp -f ../conf/storage.conf /etc/fdfs/storage.conf.sample; fi
  mkdir -p /usr/bin
  mkdir -p /etc/fdfs
  mkdir -p /usr/lib64
  mkdir -p /usr/lib
  cp -f fdfs_monitor fdfs_test fdfs_test1 fdfs_crc32 fdfs_upload_file fdfs_download_file fdfs_delete_file fdfs_file_info fdfs_appender_test fdfs_appender_test1 fdfs_append_file fdfs_upload_appender /usr/bin
  if [ 0 -eq 1 ]; then cp -f libfdfsclient.a /usr/lib64; cp -f libfdfsclient.a /usr/lib/;fi
  if [ 1 -eq 1 ]; then cp -f libfdfsclient.so /usr/lib64; cp -f libfdfsclient.so /usr/lib/;fi
  mkdir -p /usr/include/fastdfs
  cp -f ../common/fdfs_define.h ../common/fdfs_global.h ../common/mime_file_parser.h ../common/fdfs_http_shared.h ../tracker/tracker_types.h ../tracker/tracker_proto.h ../tracker/fdfs_shared_func.h ../storage/trunk_mgr/trunk_shared.h tracker_client.h storage_client.h storage_client1.h client_func.h client_global.h fdfs_client.h /usr/include/fastdfs
  if [ ! -f /etc/fdfs/client.conf.sample ]; then cp -f ../conf/client.conf /etc/fdfs/client.conf.sample; fi

如出现以上信息,说明安装成功。

fastDFS命令目录:/usr/bin

fastDFS配置文件目录:/etc/fdfs

  • 创建fastdfs数据目录
  mkdir -pv /data/fastdfs/tracker
  • 修改tracker.conf中的 base_path=/data/fastdfs/tracker,即刚才配置的数据文件目录
 cp etc/fdfs/tracker.conf.sample etc/fdfs/tracker.conf
 vi  etc/fdfs/tracker.conf
  • 启动FASTDFS
  cd  /usr/bin
  fdfs_trackerd /etc/fdfs/tracker.conf restart
  • 验证,默认端口是22122
  [root@localhost bin]# netstat -antp|grep trackerd
  tcp        0      0 0.0.0.0:22122           0.0.0.0:*               LISTEN      31046/fdfs_trackerd 

storage安装(192.168.1.188,192.168.1.189)

storage的安装与tracker安装类似,首先编译安装fastdfs,然后修改配置文件。

  • 创建配置文件
  cp etc/fdfs/storage.conf.sample etc/fdfs/storage.conf
  vi  etc/fdfs/storage.conf
  • 修改tracker.conf中的
  disabled=false #启用配置文件
  group_name=group1 #组名,根据实际情况修改
  port=23000 #设置 storage 的端口号
  base_path=/data/fastdfs/storage #设置 storage 的日志目录(需预先创建)
  store_path_count=1 #存储路径个数,需要和 store_path 个数匹配
  store_path0=/data/fastdfs/storage #存储路径
  tracker_server=192.168.1.177:22122 #tracker 服务器的 IP 地址和端口号
  • 启动
 cd /usr/bin
  ./fdfs_storaged  /etc/fdfs/storage.conf restart

在storage节点上安装nginx,增加http下载支持

  • 编译安装nginx,下载prce、zlib、fastdfs-nginx-module依赖支持,上传到storage的usr/local/src目录下。fastdfs-nginx-module主要用于解决同一组内文件同步不及时的问题。

修改 fastdfs-nginx-module-1.20/src/config文件 整个文件改成如下

ngx_addon_name=ngx_http_fastdfs_module

if test -n "${ngx_module_link}"; then
ngx_module_incs="/usr/include/fastdfs /usr/include/fastcommon/"
else
CORE_INCS="$CORE_INCS /usr/include/fastdfs /usr/include/fastcommon/"
fi
  • 复制 fastdfs/conf/http.conf mime.types 两个文件到/etc/fdfs/

相关文章

网友评论

      本文标题:fastdfs编译安装

      本文链接:https://www.haomeiwen.com/subject/xnvytctx.html