zoukankan      html  css  js  c++  java
  • fastdfs 服务安装与配置

    下载libfastcommon:
    cd
    wget https://github.com/happyfish100/libfastcommon/archive/V1.0.35.tar.gz
    tar -xavf V1.0.35.tar.gz
    cd libfastcommon-1.0.35/
    ./make.sh
    ./make.sh install




    安装fastdfs 5.10:
    cd
    wget https://github.com/happyfish100/fastdfs/archive/V5.10.tar.gz
    tar -xzvf V5.10.tar.gz
    cd fastdfs-5.10/
    ./make.sh
    ./make.sh install
    cd ~/fastdfs-5.10/conf
    cp http.conf anti-steal.jpg mime.types /etc/fdfs/




    创建目录:
    mkdir -p /var/lib/fast-dfs/tracker
    mkdir -p /var/lib/fast-dfs/storage/{base,path0}
    mkdir -p /var/lib/fast-dfs/client
    mkdir -p /var/lib/fast-dfs/nginx-module




    创建配置文件:
    cp -p /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf
    cp -p /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf
    cp -p /etc/fdfs/client.conf.sample /etc/fdfs/client.conf




    修改tracker进程的配置文件/etc/fdfs/tracker.conf:
    --------------------------------------------------------
    将:
    base_path=/home/yuqing/fastdfs
    改为:
    base_path=/var/lib/fast-dfs/tracker
    --------------------------------------------------------




    修改storage进程的配置文件/etc/fdfs/storage.conf:
    --------------------------------------------------------
    将:
    base_path=/home/yuqing/fastdfs
    改为:
    base_path=/var/lib/fast-dfs/storage/base
    --------------------------------------------------------
    将:
    store_path0=/home/yuqing/fastdfs
    改为:
    store_path0=/var/lib/fast-dfs/storage/path0
    --------------------------------------------------------
    将:
    tracker_server=192.168.209.121:22122
    改为:
    tracker_server=vs73:22122
    --------------------------------------------------------




    修改client进程的配置文件/etc/fdfs/client.conf:
    --------------------------------------------------------
    将:
    base_path=/home/yuqing/fastdfs
    改为:
    base_path=/var/lib/fast-dfs/client
    --------------------------------------------------------
    将:
    tracker_server=192.168.0.197:22122
    改为:
    tracker_server=vs73:22122
    --------------------------------------------------------




    启动tracker进程:
    fdfs_trackerd /etc/fdfs/tracker.conf start
    fdfs_trackerd /etc/fdfs/tracker.conf stop
    或者
    systemctl enable fdfs_trackerd
    systemctl stop fdfs_trackerd
    systemctl start fdfs_trackerd
    systemctl status fdfs_trackerd


    启动storage进程:
    fdfs_storaged /etc/fdfs/storage.conf start
    fdfs_storaged /etc/fdfs/storage.conf stop
    或者
    systemctl enable fdfs_storaged
    systemctl stop fdfs_storaged
    systemctl start fdfs_storaged
    systemctl status fdfs_storaged




    测试
    fdfs_monitor /etc/fdfs/storage.conf
    fdfs_upload_file /etc/fdfs/client.conf local_filename
    fdfs_download_file /etc/fdfs/client.conf remote_filename
    fdfs_file_info /etc/fdfs/client.conf remote_filename

  • 相关阅读:
    0/1背包问题
    假如爱有天意(中文版)
    tomcat集群
    分布式锁
    centos7安装Harbor(转载)
    isEmpty和isBlank的区别
    单体应用架构和分布式架构的比较
    微服务鉴权
    mysql的时区设置
    RSA非对称加密算法
  • 原文地址:https://www.cnblogs.com/PMlog/p/7067955.html
Copyright © 2011-2022 走看看