Mac 安装FastDFS

作者: Hello小小酥 | 来源:发表于2019-06-22 21:27 被阅读0次

  最近在学Python的时候使用到了FastDFS对文件图片进行上传管理。但是在网上搜索了些许教程后并没有能使用的,大多都是Ubuntu的。于是自己照着配置Ubuntu的方法进行了配置后并修改了些地方,话不多说。马上开始。

首先我们需要下载相对应的安装包:

1.安装libfastcommon

我们进入到libfastcommon-master目录中执行./make.shsudo ./make.sh install,具体代码如下:

1、cd /Users/username/Desktop/libfastcommon-master
2、./make.sh
3、sudo ./make.sh install

2.安装FastDFS

同安装libfastcommon一样,我们先进入到fastdfs-master目录中,执行./make.shsudo ./make.sh install,具体代码如下:

1、cd /Users/username/Desktop/fastdfs-master
2、./make.sh
3、sudo ./make.sh install

3.配置

安装完成后我们要进行一些配置

  • 配置跟踪服务器tracker
  1. 拷贝tracker配置文件
sudo cp /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf

2.在/home/python/目录中创建目录 fastdfs/tracker

mkdir -p /home/python/fastdfs/tracker/

3.编辑/etc/fdfs/tracker.conf配置文件

sudo vim /etc/fdfs/tracker.conf

修改其中的base_path

 base_path=/home/python/fastdfs/tracker
  • 配置存储服务器storage
  1. 拷贝storage配置文件
sudo cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf

2.在/home/python/目录中创建目录 fastdfs/storage

mkdir -p /home/python/fastdfs/storage/

3.编辑/etc/fdfs/storage.conf 配置文件

sudo vim /etc/fdfs/storage.conf

修改其中的base_path, store_path0, tracker_server

base_path=/home/python/fastdfs/storage
store_path0=/home/python/fastdfs/storage
tracker_server=Mac的IP地址:22122
  • 启动tracker和storage
sudo /usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart
sudo /usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart

查看是否启动成功

ps aux|grep fdfs
username   7884   0.0  0.0  4268056    808 s004  S+    8:28下午   0:00.00 grep fdfs
root              7868   0.0  0.4  4383916  66792   ??  S     8:27下午   0:02.14 fdfs_storaged /etc/fdfs/storage.conf restart
root              7855   0.0  0.0  4323576    988   ??  S     8:27下午   0:00.01 fdfs_trackerd /etc/fdfs/tracker.conf restart

如上述显示,则表示启动成功。

  • 测试是否安装成功
  1. 拷贝client配置文件
sudo cp /etc/fdfs/client.conf.sample /etc/fdfs/client.conf

2.修改client配置文件

sudo vim /etc/fdfs/client.conf

修改内容:

base_path=/home/python/fastdfs/tracker
tracker_server=Mac的IP地址:22122
  1. 上传文件测试
 fdfs_upload_file /etc/fdfs/client.conf  要上传的图片 //如:dfs_upload_file /etc/fdfs/client.conf /Users/username/Desktop/aaa.jpeg

如果返回类似group1/M00/00/00/wKgCZl0OIFWAZOVMAABwSY4nz_Q55.jpeg的文件id则说明文件上传成功。

结尾

  以上就是FastDFS在Mac上的安装,如有不足之处,还请不吝赐教,大家互相学习。如果您觉得我的文章有用,点一下喜欢就可以了哦。

相关文章

  • Mac 安装FastDFS

      最近在学Python的时候使用到了FastDFS对文件图片进行上传管理。但是在网上搜索了些许教程后并没有能使用...

  • FastDFS 和 Nginx 整合

    1、安装 FastDFS Centos 7 安装 FastDFS 2、配置 fastdfs-nginx-modul...

  • 2019-10-31 FastDFS + Nginx 实现文件的

    Mac系统下实现 FastDFS 文件的上传 与下载 在 Mac 下通过 Docker + FastDFS + N...

  • fastdfs安装使用

    环境准备 编译环境 目录 安装libfatscommon 安装FastDFS 安装fastdfs-nginx-mo...

  • FastDFS 集群

    Centos 7 安装 FastDFS CentOS 7 安装 Nginx FastDFS 和 Nginx 整合 ...

  • Centos7安装FastDFS分布式文件系统

    1.FastDFS环境安装 安装libfastcommon libfastcommon是FastDFS官方提供的,...

  • FastDFS安装

    FastDFS安装报告 [TOC] 实验要求 安装 FastDFS这个开源的轻量级的分布式文件系统FastDFS ...

  • 02-FastDFS

    FastDFS安装

  • Mac 安装FastDFS与Nginx

    最近进了FastDFS安装的坑,爬了很久,终于出来了,写个教程,有朋友用到可以参考下。首先说下就是版本很重要,我一...

  • 使用docker安装fastDFS

    使用Docker安装FastDFS 获取镜像可以利用已有的FastDFS Docker镜像来运行FastDFS。 ...

网友评论

    本文标题:Mac 安装FastDFS

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