python django框架中使用FastDFS分布式文件系统的安装方法

作者:begrateful 时间:2022-02-25 21:27:33 

一、安装FastDFS

1-1:执行docker命令安装


# 安装tracker
docker run -dti --network=host --name tracker -v /var/fdfs/tracker:/var/fdfs youkou1/fastdfs tracker
# 安装storage
docker run -dti --network=host --name storage -e TRACKER_SERVER=IP地址:22122 -v /var/fdfs/storage:/var/fdfs youkou1/fastdfs storage

python django框架中使用FastDFS分布式文件系统的安装方法

1-2 测试是否安装成功:执行命令 docker ps -a

python django框架中使用FastDFS分布式文件系统的安装方法

TRACKER_SERVER:IP地址说明不要使用lo 和docker下的IP地址因为在安装镜像中配的是enp3s0下面的IP地址。

python django框架中使用FastDFS分布式文件系统的安装方法

1-3、在项目中创建客户端配置文件  fastdfs/client.conf

python django框架中使用FastDFS分布式文件系统的安装方法

client.conf配置文件内容:注意tracker_serverIP地址。


# connect timeout in seconds
# default value is 30s
connect_timeout=30
# network timeout in seconds
# default value is 30s
network_timeout=60
# the base path to store log files
# base_path=utils/fastdfs/logs
# 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.31.170:22122
#standard log level as syslog, case insensitive, value list:
### emerg for emergency
### alert
### crit for critical
### error
### warn for warning
### notice
### info
### debug
log_level=info
# if use connection pool
# default value is false
use_connection_pool = false
# connections whose the idle time exceeds this time will be closed
# unit: second
# default value is 3600
connection_pool_max_idle_time = 3600
# if load FastDFS parameters from tracker server
# default value is false
load_fdfs_parameters_from_tracker=false
# if use storage ID instead of IP address
# same as tracker.conf
# valid only when load_fdfs_parameters_from_tracker is false
# default value is false
use_storage_id = false
# specify storage ids filename, can use relative or absolute path
# same as tracker.conf
# valid only when load_fdfs_parameters_from_tracker is false
storage_ids_filename = storage_ids.conf
#HTTP settings
http.tracker_server_port=80

1-4:在xhell中进入项目的虚拟环境安装python相关包 (在虚拟环境中)


# 安装相关包
pip install fdfs_client.zip
pip install mutagen
pip install requests

1-5:如果pip install fdfs_client.zip 安装报错

python django框架中使用FastDFS分布式文件系统的安装方法

请执行如下命令


sudo apt-get install python3 python-dev python3-dev build-essential libssl-dev libffi-dev libxml2-dev libxslt1-dev zlib1g-dev python-pip

python django框架中使用FastDFS分布式文件系统的安装方法

然后在执行安装命令:

python django框架中使用FastDFS分布式文件系统的安装方法

查看所安装的包:

python django框架中使用FastDFS分布式文件系统的安装方法

测试代码:


from fdfs_client.client import Fdfs_client
FDFS_Client = Fdfs_client('/common/fastdfs/client.conf')
ret = FDFS_Client.upload_by_filename('/media/2018.png')
print(ret)

如果执行不报错,返回结果如下说明就成功了:

python django框架中使用FastDFS分布式文件系统的安装方法

1-6 如果进行测试 以下报的是语法错误,这个明显是python2的语法,我现在用的是python3,进过查询相关资料,决定换一个不用 pip install fdfs_client.zip

python django框架中使用FastDFS分布式文件系统的安装方法

删除   fdfs_client.zip  执行命令

pip uninstall fdfs_client-py

使用pip install py3Fdfs

 python django框架中使用FastDFS分布式文件系统的安装方法

再次测试:

python django框架中使用FastDFS分布式文件系统的安装方法

 在浏览器中查看:

http://192.168.31.170:8888/group1/M00/00/00/wKgfqlz5yYyAHe5nAAfh_rrm7jw601.png

注意:这里的端口8888也是在上面安装环境中配好的。

总结

以上所述是小编给大家介绍的python django框架中使用FastDFS分布式文件系统的安装方法,网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

来源:https://www.cnblogs.com/wendj/archive/2019/06/10/10986003.html

标签:python,django,框架
0
投稿

猜你喜欢

  • Django框架中间件(Middleware)用法实例分析

    2021-01-04 09:27:38
  • django Layui界面点击弹出对话框并请求逻辑生成分页的动态表格实例

    2021-04-17 02:03:04
  • tween.js缓动补间动画算法示例

    2024-05-21 10:13:40
  • python实现自动抢课脚本的示例代码

    2022-03-12 08:16:19
  • FckEditor 中文配置手册

    2022-05-20 22:23:13
  • keras实现调用自己训练的模型,并去掉全连接层

    2023-08-10 16:34:21
  • Python时间模块datetime、time、calendar的使用方法

    2023-04-02 06:44:16
  • 解决PyCharm中光标变粗的问题

    2022-10-24 15:47:32
  • DDL、DML和DCL的区别与理解

    2024-01-23 23:08:01
  • JavaScript中尽量用局部变量的原因[译]

    2009-02-20 13:45:00
  • 这么多的 Oracle 性能工具

    2008-06-04 11:20:00
  • mysql 8.0.22 安装配置方法图文教程

    2024-01-24 20:30:05
  • SQL Agent服务无法启动的解决方法

    2024-01-21 23:10:21
  • ASP编写计数器的优化方法

    2009-01-21 19:46:00
  • Python脚本实现虾米网签到功能

    2021-11-23 14:37:53
  • 使用pyshp包进行shapefile文件修改的例子

    2023-07-01 08:28:35
  • 如何利用Python获取鼠标的实时位置

    2022-08-11 07:00:33
  • css网页下拉菜单制作方法(2):初步实现

    2007-02-03 11:39:00
  • node.js操作mysql(增删改查)

    2024-01-26 00:02:50
  • opencv 图像轮廓的实现示例

    2023-07-21 15:37:17
  • asp之家 网络编程 m.aspxhome.com