CentOS7.X安装FastDFS-5.10
安装准备
yum install \
vim \
git \
gcc \
gcc-c++ \
wget \
make \
libtool \
automake \
autoconf \
-y \安装libfastcommon
cd /root
git clone https://github.com/happyfish100/libfastcommon.git
cd libfastcommon/
./make.sh
./make.sh install安装fastdfs
cd /root
wget https://github.com/happyfish100/fastdfs/archive/V5.10.tar.gz
tar -zxvf V5.10.tar.gz
cd fastdfs-5.10
./make.sh
./make.sh install- 如果只想安装FastDFS php客户端,请直接向下,找到php安装FastDFS扩展
创建目录
mkdir /data/
mkdir /data/fdfs
# 代码服务器执行
mkdir /data/fdfs/client
# 存储服务器执行
mkdir /data/fdfs/storage
# 跟踪服务器执行
mkdir /data/fdfs/tracker配置的建议
- 每一台client配置上所有tracker服务器地址
- 每一台storage配置上所有tracker服务器地址
- 每一个group至少有2个storage服务互为备份机
- group name建议从group0开始命名(兼容FastDHT)
配置client(在client服务器[代码服务器])
cp /etc/fdfs/client.conf.sample /etc/fdfs/client.conf
vim /etc/fdfs/client.conf base_path=/data/fdfs/client
tracker_server=192.168.1.101:22122 #tracker服务器1 ip地址
tracker_server=192.168.1.102:22122 #tracker服务器2 ip地址 ESC
:wq配置storage(在storage服务器)
cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf
vim /etc/fdfs/storage.conf group_name=group0
base_path=/data/fdfs/storage
#这样配置只有M00
store_path0=/data/fdfs/storage
#这样配置就有M01(一般用于磁盘挂载的情况)
#store_path1=/mnt/fdfs/storage
#设置storage最大连接数
max_connections=1024
#tracker服务器1 ip地址
tracker_server=192.168.1.101:22122
#只有一台tracker不要增加这条↓!!!!!!!!
#tracker_server=192.168.1.102:22122 #tracker服务器2 ip地址 #以下配置安装FastDHT才配置!!!!!!!!
#以下配置安装FastDHT才配置!!!!!!!!
#以下配置安装FastDHT才配置!!!!!!!! check_file_duplicate=1
key_namespace=FastDFS
keep_alive=1
#include /etc/fdht/fdht_servers.conf ESC
:wq配置tracker(在tracker服务器)
cp /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf
vim /etc/fdfs/tracker.conf bind_addr=192.168.1.101
base_path=/data/fdfs/tracker
# 0轮询 1指定组 2最大剩余空间
store_lookup=2
max_connections=1024
# work_threads <= max_connections
work_threads=16 ESC
:wq启动及测试【注意】
# 如果storage.conf做了FastDHT配置,一定要先安装FastDHT
启动tracker和storage
# 用来做tracker的服务器执行
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf # 用来做storage的服务器执行
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf启动与停止
# 只能在对应服务器上进行对应操作!!!!!!!!
# 只能在对应服务器上进行对应操作!!!!!!!!
# 只能在对应服务器上进行对应操作!!!!!!!!
# 启动
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf # 关闭
/usr/bin/stop.sh /usr/bin/fdfs_trackerd
/usr/bin/stop.sh /usr/bin/fdfs_storaged # 重启
/usr/bin/restart.sh /usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
/usr/bin/restart.sh /usr/bin/fdfs_storaged /etc/fdfs/storage.conf # 查看集群storage分布(在storage服务器执行)
/usr/bin/fdfs_monitor /etc/fdfs/storage.conf # 删除某个group中的一个storage(在storage服务器执行)
/usr/local/bin/fdfs_monitor /etc/fdfs/storage.conf delete [group name] [ip address]开机启动
# 用来做tracker的服务器执行
vim /etc/rc.local /usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf ESC
:wq chmod +x /etc/rc.local # 用来做storage的服务器执行
vim /etc/rc.local /usr/bin/fdfs_storaged /etc/fdfs/storage.conf ESC
:wq chmod +x /etc/rc.local可通过日志查看是否启动成功
# 用来做storage的服务器执行
cat /data/fdfs/storage/logs/storaged.log|grep ERROR
cat /data/fdfs/storage/logs/storaged.log|grep WARNING # 用来做tracker的服务器执行
cat /data/fdfs/tracker/logs/trackerd.log|grep ERROR
cat /data/fdfs/tracker/logs/trackerd.log|grep WARNING # 在storage服务器创建软连接
# 配置Nginx才添加!!!!!!!!
# 配置Nginx才添加!!!!!!!!
# 配置Nginx才添加!!!!!!!!
mkdir /www/fastdfs/group0
ln -s /data/fdfs/storage/data/ /www/fastdfs/group0/M00防火墙相关配置
yum install firewalld systemctl enable firewalld
systemctl start firewalld firewall-cmd --zone=public --add-port=11411/tcp --permanent
firewall-cmd --zone=public --add-port=22122/tcp --permanent
firewall-cmd --zone=public --add-port=23000/tcp --permanent firewall-cmd --reload测试功能是否正常
mkdir /test
cd /test
vim test.txt
This is a test file.
ESC
:wq
#上传
/usr/bin/fdfs_test /etc/fdfs/client.conf upload /test/test.txt #下载
/usr/bin/fdfs_download_file /etc/fdfs/client.conf group0/M00/00/00/xxx.txt
#查看下载文件
ll /test
#删除下载文件
rm /xxx.txt #删除
/usr/bin/fdfs_delete_file /etc/fdfs/client.conf group0/M00/00/00/xxx.cfg为php安装fastdfs_client扩展
cd /root/fastdfs-5.10/php_client
phpize
./configure make
make install cat /root/fastdfs-5.10/php_client/fastdfs_client.ini >> /usr/local/php/lib/php.ini
kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`为php安装fastcommon扩展
cd /root/libfastcommon/php-fastcommon
phpize
./configure make
make install vim /usr/local/php/lib/php.ini extension=fastcommon.so ESC
:wq kill -USR2 `cat /usr/local/php-7.1.4/var/run/php-fpm.pid`
CentOS7.X安装FastDFS-5.10的更多相关文章
- Centos7 上安装FastDFS
Centos7 上安装 FastDFS 本文章摘抄于 风止鱼歇 博客地址:https://www.cnblogs.com/yufeng218/p/8111961.html 1.安装gcc(编译时需要 ...
- Linux CentOS7下安装Zookeeper-3.4.10服务(最新)
Linux CentOS7下安装Zookeeper-3.4.10服务(最新) 2017年10月27日 01:25:26 极速-蜗牛 阅读数:1933 版权声明:本文为博主原创文章,未经博主允许不得 ...
- Centos7 上安装 FastDFS
1.安装gcc(编译时需要) FastDFS是C语言开发,安装FastDFS需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc yum install -y gcc ...
- centos7.x 安装 fastDFS
环境准备 使用的系统软件 名称 说明 centos 7.x libfatscommon FastDFS分离出的一些公用函数包 FastDFS FastDFS本体 fastdfs-nginx-modul ...
- Centos7编译安装lnmp(nginx1.10 php7.0.2)
我使用的是阿里云的服务器 Centos7 64位的版本 1. 连接服务器 这个是Xshell5的版本 安装好之后我们开始连接服务器 2. 安装nginx 首先安装nginx的依赖 yum instal ...
- CentOS7.0安装Nginx 1.10.0
首先由于nginx的一些模块依赖一些lib库,所以在安装nginx之前,必须先安装这些lib库,这些依赖库主要有g++.gcc.openssl-devel.pcre-devel和zlib-devel ...
- CentOS7.2 安装RabbitMQ3.6.10
CentOS上面使用yum安装比较方便 先记录一些rabbitmq的基本操作命令: $ sudo chkconfig rabbitmq-server on # 添加开机启动RabbitMQ服务 $ s ...
- Centos7下安装MongoDB4.0.10
前言 模式自由 :可以把不同结构的文档存储在同一个数据库里 面向集合的存储:适合存储 JSON风格文件的形式 完整的索引支持:对任何属性可索引 复制和高可用性:支持服务器之间的数据复制,支持主-从模式 ...
- Linux centOS7 下安装mysql5.7.10
1:下载二进制安装包 http://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.10-linux-glibc2.5-x86_64.tar.gz 2:解压到 ...
- centos7下安装docker(10容器底层--cgroup和namespace)
cgroup和namespace是实现容器底层的重要技术 cgroup:实现资源限制 namespace:实现资源隔离 1.cgroup:control group Linux操作系统通过cgroup ...
随机推荐
- [c#]Extesion method
做一个类似Vb.net里面with的方法 public static void Use<T>(this T item, Action<T> work) { work(item) ...
- [Python3 练习] 008 欧几里德算法
题目:写个"欧几里德算法"的小程序 (1) 描述 我知识浅薄,一开始被"欧几里德"的大名唬住了,去搜了一下才知道这就是高中时学过的"辗转相除法&quo ...
- 解决在data里面获取一个固定的img值
正常情况下在data里面申明,在img标签里面通过 :src应用就行了,但是如果是直接申明引用是没效果的: html: <div class="logo"> <i ...
- Django之模板(T)
一, 常用语法 Django模板中只需要记两种特殊符号: {{ }}和 {% %} {{ }}表示变量,在模板渲染的时候替换成值,{% %}表示逻辑相关的操作. 一, 变量 语法: {{ 变量名 }} ...
- CSRF verification failed. Request aborted.错误解决办法
在Django项目的页面,提交form表单POST请求时,会出现报错:CSRF verification failed. Request aborted. 需要在form表单中加:{% csrf_to ...
- SCAU 2015 GDCPC team_training0
A.题目:http://acm.timus.ru/problem.aspx?space=1&num=2024 题意:求一个包含K个不同字符的集合的最大长度,还有组成这个长度的集合的个数 做法: ...
- 构造函数与new的汇编实现
this指针,通常是通过ecx传递:gcc是通过堆栈传递的,是最后一个被压栈.传递this指针是为了访问成员变量.除了虚函数,所有成员函数被编译之后都是全局函数.mov eax,[ecx] ; 将第一 ...
- linux下docker启动nginx无法访问80端口
问题: Linux安装了docker,docker启动了一个nginx容器,通过 80 端口无法正常访问 故障排查: 1.检查 nginx 容器启动的命令或者yaml文件,查看是否有跟本机端口进行绑定 ...
- 05.Linux-CentOS系统本地Yum源搭建
CentOS系统 1.挂载镜像光盘[root@localhost ~]# mount /dev/sr0 /media/cdrom/ 2.创建本地yum源仓库[root@localhost ~]# cd ...
- [USACO]奶牛会展(背包)
[USACO]奶牛会展 题目背景 奶牛想证明它们是聪明而风趣的.为此,贝西筹备了一个奶牛博览会,她已经对N 头奶牛进行 了面试,确定了每头奶牛的智商和情商. 题目描述 贝西有权选择让哪些奶牛参加展览. ...