分布式文件系统
C18298182575
跳出舒适区
展开
-
HDFS学习
全称:Hadoop Distributed File System。hadoop分布式文件系统。原创 2024-07-31 09:12:30 · 254 阅读 · 0 评论 -
fastDFS安装用到命令
防火墙 systemctl enable firewalld.service #开启防火墙 systemctl stop firewalld.service #关闭防火墙(开机会仍会启动) systemctl disable firewalld.service #禁用防火墙(开机后不再启动) 查看防火墙状态 systemctl status firewalld 启动trackerd stor...原创 2019-07-19 18:54:11 · 143 阅读 · 0 评论 -
springboot集成fastDFS文件上传下载
一,代码 gradle依赖 排除logback compile ('com.github.tobato:fastdfs-client:1.26.2'){ exclude group: 'ch.qos.logback', module: '*' } 配置类 /** * <pre> * 将FastDFS-Client客户端引入本地 * </pre>...原创 2019-07-19 18:43:44 · 1134 阅读 · 1 评论 -
FastDFS 分布式文件系统(部署和运维)
版权声明: https://blog.csdn.net/KamRoseLee/article/details/80334621 FastDFS介绍 1.1什么是FastDFS FastDFS是用c语言编写的一款开源的分布式文件系统。FastDFS为互联网量身定制,充分考虑了冗余备份、负载均衡、线性扩容等机制,并注重高可用、高性能等指标,使用FastDFS很容易搭建一套高性能...转载 2019-07-17 15:27:01 · 228 阅读 · 0 评论 -
手把手教你搭建FastDFS集群(下)
此文为转载,支持原创,请移步: https://blog.csdn.net/u012453843/article/details/69172423 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u012453843/article/details/69172423 由于博客图片量大,篇幅太长,因此需要分上、中、下三篇博客...转载 2019-07-17 14:04:33 · 162 阅读 · 0 评论 -
手把手教你搭建FastDFS集群(中)
此文转载,支持原创,请访问原文:https://blog.csdn.net/u012453843/article/details/69055570 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u012453843/article/details/69055570 上一篇博客,我们一起搭建了storage和tracker集群,...转载 2019-07-17 14:02:02 · 267 阅读 · 0 评论 -
手把手教你搭建FastDFS集群(上)
此文为转载,支持原创,请访问原文: https://blog.csdn.net/u012453843/article/details/68957209 作者:在京奋斗者 来源:CSDN 原文:https://blog.csdn.net/u012453843/article/details/68957209 版权声明:本文为博主原创文章,转载请附上博文链接! 版权声明:本文为博主原创文章...转载 2019-07-17 13:58:55 · 594 阅读 · 0 评论 -
FASTDFS
https://www.jianshu.com/p/1c71ae024e5e 参考 官方网站:https://github.com/happyfish100/ 配置文档:https://github.com/happyfish100/fastdfs/wiki/ 参考资料:https://www.oschina.net/question/tag/fastdfs Java客户端:https:...转载 2019-07-17 11:17:34 · 190 阅读 · 0 评论 -
FastDFS入门一篇就够
完整安装流程 下载的包都存放在~/caibh/fdfs-package目录下。 下载libfastcommon、fastdfs、fastdfs-nginx-module: cd ~/caibh/fdfs-package # -S print server response # -O write documents to file wget https://github.com/happyf...转载 2019-07-16 17:20:39 · 580 阅读 · 0 评论 -
fastDFS引入jar包后日志冲突
排除logback compile ('com.github.tobato:fastdfs-client:1.26.2'){ exclude group: 'ch.qos.logback', module: '*' }原创 2019-07-18 21:04:07 · 730 阅读 · 0 评论 -
FdfsConnectException:无法获取服务端资源:cant creat connection to /ip timeout
连接超时 解决 设置大点原创 2019-07-18 21:02:18 · 2791 阅读 · 0 评论 -
springboot启动 fastDFS启动报错 mbeanExporter: defined by method 'mbeanExporter' in class path
解决 c 参考:https://blog.csdn.net/luckyboy198961/article/details/79618693原创 2019-07-18 20:38:52 · 726 阅读 · 0 评论 -
简单记录fastDFS安装
详细参考:https://mp.csdn.net/postedit/96435700 输入ctrl+alt+F2 切换到命令窗口 yum -y install zlib zlib-devel pcre pcre-devel gcc gcc-c++ openssl openssl-devel libevent libevent-devel perl unzip net-tools wget y...原创 2019-07-18 18:00:02 · 161 阅读 · 0 评论 -
fastDFS文件系统安装
踩过的坑 1,官网下镜像文件:liunx镜像文件一定要从官网下载大小4.3G左右,我之前下载的只有600多M,安装过后很多命令用不了,用xshell连不通 官网地址:https://www.centos.org/download/ 2,正确的安装流程:网上很多,但很多都不全,后面很多坑,比如有的没有创建普通用户和设置密码,后面用xshell连接会用到 可参考:https://mp.csdn...原创 2019-07-18 17:58:31 · 312 阅读 · 0 评论