centos 7.x安装fastdfs 5.10

软件仓库地址: https://github.com/happyfish100/libfastcommon https://github.com/happyfish100/fastdfs https://github.com/happyfish100/fastdfs-Nginx-module 实验环境: vs73: tracker vs74: storage(group1)+Nginx vs75: storage(group2)+Nginx 下载libfastcommon: cd wget https://github.com/happyfish100/libfastcommon/archive/V1.0.35.tar.gz tar -xavf V1.0.35.tar.gz cd libfastcommon-1.0.35/ ./make.sh ./make.sh install 安装fastdfs 5.10: cd wget https://github.com/happyfish100/fastdfs/archive/V5.10.tar.gz tar -xzvf V5.10.tar.gz cd fastdfs-5.10/ ./make.sh ./make.sh install cd ~/fastdfs-5.10/conf cp http.conf anti-steal.jpg mime.types /etc/fdfs/ 创建目录: mkdir -p /var/lib/fast-dfs/tracker mkdir -p /var/lib/fast-dfs/storage/{base,path0} mkdir -p /var/lib/fast-dfs/client mkdir -p /var/lib/fast-dfs/Nginx-module 创建配置文件: cp -p /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf cp -p /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf cp -p /etc/fdfs/client.conf.sample /etc/fdfs/client.conf 修改tracker进程的配置文件/etc/fdfs/tracker.conf: -------------------------------------------------------- 将: base_path=/home/yuqing/fastdfs 改为: base_path=/var/lib/fast-dfs/tracker -------------------------------------------------------- 修改storage进程的配置文件/etc/fdfs/storage.conf: -------------------------------------------------------- 将: base_path=/home/yuqing/fastdfs 改为: base_path=/var/lib/fast-dfs/storage/base -------------------------------------------------------- 将: store_path0=/home/yuqing/fastdfs 改为: store_path0=/var/lib/fast-dfs/storage/path0 -------------------------------------------------------- 将: tracker_server=192.168.209.121:22122 改为: tracker_server=vs73:22122 -------------------------------------------------------- 修改client进程的配置文件/etc/fdfs/client.conf: -------------------------------------------------------- 将: base_path=/home/yuqing/fastdfs 改为: base_path=/var/lib/fast-dfs/client -------------------------------------------------------- 将: tracker_server=192.168.0.197:22122 改为: tracker_server=vs73:22122 -------------------------------------------------------- 启动tracker进程: fdfs_trackerd /etc/fdfs/tracker.conf start fdfs_trackerd /etc/fdfs/tracker.conf stop 或者 systemctl enable fdfs_trackerd systemctl stop fdfs_trackerd systemctl start fdfs_trackerd systemctl status fdfs_trackerd 启动storage进程: fdfs_storaged /etc/fdfs/storage.conf start fdfs_storaged /etc/fdfs/storage.conf stop 或者 systemctl enable fdfs_storaged systemctl stop fdfs_storaged systemctl start fdfs_storaged systemctl status fdfs_storaged 测试 fdfs_monitor /etc/fdfs/storage.conf fdfs_upload_file /etc/fdfs/client.conf local_filename fdfs_download_file /etc/fdfs/client.conf remote_filename fdfs_file_info /etc/fdfs/client.conf remote_filename 安装fastdfs-Nginx-module的依赖包: yum -y install pcre pcre-devel zlib zlib-devel openssl openssl-devel 下载fastdfs-Nginx-module、Nginx(http://Nginx.org/en/download.html)源代码: cd git clone https://github.com/happyfish100/fastdfs-Nginx-module.git wget http://Nginx.org/download/Nginx-1.12.0.tar.gz tar -xzvf Nginx-1.12.0.tar.gz cd ~/Nginx-1.12.0 ./configure --prefix=/usr/local/Nginx-1.12.0 --add-module=$HOME/fastdfs-Nginx-module/src make make install cp $HOME/fastdfs-Nginx-module/src/mod_fastdfs.conf /etc/fdfs/ 修改配置文件/usr/local/Nginx-1.12.0/conf/Nginx.conf: server { listen 80; server_name localhost; location ~ /group[0-9]/M00 { ngx_fastdfs_module; } } 修改配置文件/etc/fdfs/mod_fastdfs.conf: -------------------------------------------------------- 将: base_path=/tmp 改为: base_path=/var/lib/fast-dfs/Nginx-module -------------------------------------------------------- 将: tracker_server=tracker:22122 改为: tracker_server=vs73:22122 -------------------------------------------------------- 将: url_have_group_name = false 改为: url_have_group_name = true -------------------------------------------------------- 将: store_path0=/home/yuqing/fastdfs 改为: store_path0=/var/lib/fast-dfs/storage/path0 -------------------------------------------------------- 启动Nginx: /usr/local/Nginx-1.12.0/sbin/Nginx

相关文章

Centos下搭建性能监控Spotlight
CentOS 6.3下Strongswan搭建IPSec VPN
在CentOS6.5上安装Skype与QQ
阿里云基于centos6.5主机VPN配置
CentOS 6.3下配置multipah
CentOS安装、配置APR和tomcat-native