修改storage配置文件

  • 修改该storage.cond配置文件
    配置storage服务 - 图1 ```shell

    修改组名

    group_name=imooc

    修改storage的工作空间

    base_path=/usr/local/fastdfs/storage

    修改storage的存储空间

    store_path0=/usr/local/fastdfs/storage

    修改tracker的地址和端口号,用于心跳

    tracker_server=192.168.1.153:22122

后续结合nginx的一个对外服务端口号

http.server_port=8888

  1. - 创建目录
  2. ```shell
  3. mkdir /usr/local/fastdfs/storage -p

启动storage

前提:必须首先启动tracker

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

检查进程如下:

  1. ps -ef|grep storage

配置storage服务 - 图2

测试上传

  • 修改的client配置文件
    配置storage服务 - 图3 ```shell base_path=/usr/local/fastdfs/client tracker_server=192.168.1.153:22122
  1. ```shell
  2. mkdir /usr/local/fastdfs/client

``` 上传成功:
配置storage服务 - 图4