詳細的最新版fastdfs單機版搭建

来源:https://www.cnblogs.com/youzhibing/archive/2018/06/09/9160690.html
-Advertisement-
Play Games

前言 目前項目是tomcat單機部署的,圖片、視頻也是上傳到tomcat目錄下,關鍵是此項目的主要內容還就是針對圖片、視頻的,這讓我非常擔憂;文件伺服器的應用是必然的,而且時間還不會太久。之前一直有聽說fastdfs,但一直沒去認真琢磨他,最近才開始去研究它,今天只是去搭建一個簡單的單機版,集群版後 ...


前言

  目前項目是tomcat單機部署的,圖片、視頻也是上傳到tomcat目錄下,關鍵是此項目的主要內容還就是針對圖片、視頻的,這讓我非常擔憂;文件伺服器的應用是必然的,而且時間還不會太久。之前一直有聽說fastdfs,但一直沒去認真琢磨他,最近才開始去研究它,今天只是去搭建一個簡單的單機版,集群版後續再出;至於架構、原理什麼我就不寫了,網上資料非常多。

環境準備

  系統:Centos6.7

  fastdfs:到https://github.com/happyfish100下載,都下載最新的:fastdfs-master、libfastcommon-master、fastdfs-nginx-module-master,避免版本問題

  Linux終端工具:xshell、xftp

       Linux ip:192.168.1.207

fastdfs安裝

       上傳相關包到/opt下,如圖

  安裝zip、unzip

              [root@fastdfs2 opt]# yum install -y unzip zip

       解壓fastdfs-master.zip

              [root@fastdfs2 opt]# unzip -o fastdfs-master.zip -d /usr/local

       編譯安裝fast

              [root@fastdfs2 opt]# cd /usr/local/fastdfs-master

              [root@fastdfs2 fastdfs-master]# ./make.sh

              報錯:./make.sh: line 146: perl: command not found

       安裝perl

              [root@fastdfs2 fastdfs-master]# yum -y install perl

              再運行./make.sh,報錯:make: cc:命令未找到

       安裝gcc

              [root@fastdfs2 fastdfs-master]# yum install gcc-c++

              再運行./make.sh,仍出現如下錯誤:

    缺少libfastcommon中的相關基礎庫

       安裝libfastcommon

              解壓libfastcommon-master.zip

                     [root@fastdfs2 fastdfs-master]# cd /opt

                     [root@fastdfs2 opt]# unzip -o libfastcommon-master.zip -d /usr/local

              安裝libfastcommon

                     [root@fastdfs2 opt]# cd /usr/local/libfastcommon-master/

                     [root@fastdfs2 libfastcommon-master]# ./make.sh

                     [root@fastdfs2 libfastcommon-master]# ./make.sh install

       再裝fastdfs

              [root@fastdfs2 local]# cd /usr/local/fastdfs-master/

              [root@fastdfs2 fastdfs-master]# ./make.sh

              [root@fastdfs2 fastdfs-master]# ./make.sh install

       拷貝配置文件

              將fastdfs安裝目錄下的conf下的文件拷貝到/etc/fdfs/下

              [root@fastdfs2 fastdfs-master]# cp -r conf/* /etc/fdfs/

       自此fastdfs安裝完成了,接下來配置trackerd和storaged,並啟動它們。

  fdfs可執行命令

         [root@fastdfs2 fdfs]# ll /usr/bin/fdfs*

-rwxr-xr-x. 1 root root 210899 6月   8 21:00 /usr/bin/fdfs_appender_test
-rwxr-xr-x. 1 root root 210868 6月   8 21:00 /usr/bin/fdfs_appender_test1
-rwxr-xr-x. 1 root root 198740 6月   8 21:00 /usr/bin/fdfs_append_file
-rwxr-xr-x. 1 root root 198044 6月   8 21:00 /usr/bin/fdfs_crc32
-rwxr-xr-x. 1 root root 198735 6月   8 21:00 /usr/bin/fdfs_delete_file
-rwxr-xr-x. 1 root root 199112 6月   8 21:00 /usr/bin/fdfs_download_file
-rwxr-xr-x. 1 root root 198960 6月   8 21:00 /usr/bin/fdfs_file_info
-rwxr-xr-x. 1 root root 211836 6月   8 21:00 /usr/bin/fdfs_monitor
-rwxr-xr-x. 1 root root 762687 6月   8 21:00 /usr/bin/fdfs_storaged
-rwxr-xr-x. 1 root root 212997 6月   8 21:00 /usr/bin/fdfs_test
-rwxr-xr-x. 1 root root 212618 6月   8 21:00 /usr/bin/fdfs_test1
-rwxr-xr-x. 1 root root 329821 6月   8 21:00 /usr/bin/fdfs_trackerd
-rwxr-xr-x. 1 root root 199076 6月   8 21:00 /usr/bin/fdfs_upload_appender
-rwxr-xr-x. 1 root root 203766 6月   8 21:00 /usr/bin/fdfs_upload_file
View Code

配置並啟動trackerd

       修改trackerd.conf

              不改也可以,但是要保證/home/yuqing/fastdfs路徑存在

              [root@fastdfs2 fdfs]# cd /etc/fdfs/

              [root@fastdfs2 fdfs]# vi tracker.conf

              將base_path=/home/yuqing/fastdfs改成base_path=/data/fastdfs

       創建trackerd數據、日誌目錄

              [root@fastdfs2 fdfs]# mkdir -p /data/fastdfs

       啟動trackerd

              [root@fastdfs2 fdfs]# /usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart

              查看trackerd進程,如下圖:

    說明trackered已經啟動起來;其實也可以查看日誌:/data/fastdfs/logs/trackerd.log,來判斷trackerd是否正常啟動起來。

配置並啟動storaged

       修改storage.conf

              [root@fastdfs2 fdfs]# cd /etc/fdfs/

              [root@fastdfs2 fdfs]# vi storage.conf

              base_path=/home/yuqing/fastdfs改為:base_path=/data/fastdfs

              store_path0=/home/yuqing/fastdfs改為:store_path0=/data/fastdfs/storage

              tracker_server=192.168.209.121:22122改為:tracker_server=192.168.1.207:22122,這個ip改成自己的

       創建storaged數據、日誌目錄

              [root@fastdfs2 fdfs]# mkdir -p /data/fastdfs/storage

       啟動storaged

              [root@fastdfs2 fdfs]# /usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart

              查看storaged進程,如下圖:

    說明storaged已經啟動起來;其實也可以查看日誌:/data/fastdfs/logs/storaged.log來判斷storaged是否正常啟動起來。

上傳圖片測試

       本地(win環境)安裝fastdfs連接驅動

              從https://github.com/happyfish100/fastdfs-client-java下載源碼,我下載的是zip包,解壓後目錄如下圖:

    maven本地安裝:mvn clean install

    

    當然也可以用ant構建:ant clean package

  書寫測試代碼

    代碼結構如圖

    fdfs_client_mine.conf:

connect_timeout = 2
network_timeout = 30
charset = UTF-8
http.tracker_http_port = 8080
http.anti_steal_token = no
http.secret_key = FastDFS1234567890

tracker_server = 192.168.1.207:22122
View Code

              FastdfsClientTest.java:

package com.lee.fastdfs.test;

import org.csource.common.NameValuePair;
import org.csource.fastdfs.*;
import org.junit.Test;

import java.io.FileNotFoundException;
import java.io.IOException;

public class FastdfsClientTest {

    //客戶端配置文件
    public String conf_filename = "fdfs_client_mine.conf";
    //本地文件,要上傳的文件
    public String local_filename = "G:\\IdeaProjects\\fastdfs\\src\\main\\resources\\mygirl.jpg";

    //上傳文件
    @Test
    public void testUpload() {

        for(int i=0;i<10;i++){

            try {
                ClientGlobal.init(conf_filename);

                TrackerClient tracker = new TrackerClient();
                TrackerServer trackerServer = tracker.getConnection();
                StorageServer storageServer = null;

                StorageClient storageClient = new StorageClient(trackerServer,
                        storageServer);
                NameValuePair nvp [] = new NameValuePair[]{
                        new NameValuePair("item_id", "100010"),
                        new NameValuePair("width", "80"),
                        new NameValuePair("height", "90")
                };
                String fileIds[] = storageClient.upload_file(local_filename, null,
                        nvp);

                System.out.println(fileIds.length);
                System.out.println("組名:" + fileIds[0]);
                System.out.println("路徑: " + fileIds[1]);

            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

}
View Code

       上傳圖片:mygirl.jpg

              執行測試代碼,當輸出如下信息時,表示上傳成功:

2
組名:group1
路徑: M00/00/00/wKgBz1salX-AKZMdAABHO7x65CM183.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-ATR4PAABHO7x65CM553.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-AKFyFAABHO7x65CM038.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-ASse4AABHO7x65CM705.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-AKUn7AABHO7x65CM247.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-AdT4cAABHO7x65CM342.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-AR0V0AABHO7x65CM992.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-AMpoLAABHO7x65CM691.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-AcjanAABHO7x65CM587.jpg
2
組名:group1
路徑: M00/00/00/wKgBz1salX-Ab8qnAABHO7x65CM687.jpg
View Code

    我們到伺服器上看看,圖片確實已經上傳了,如下圖:

    由於現在還沒有和nginx整合無法使用http下載。

FastDFS 和nginx整合

       fastdfs-nginx-module安裝

              解壓

                     [root@fastdfs2 00]# cd /opt

                     [root@fastdfs2 opt]# unzip -o fastdfs-nginx-module-master.zip -d /usr/local

              拷貝配置文件

                     [root@fastdfs2 opt]# cd /usr/local/fastdfs-nginx-module-master/src

                     [root@fastdfs2 src]# cp mod_fastdfs.conf /etc/fdfs/

              編輯配置文件

                     [root@fastdfs2 src]# cd /etc/fdfs/

                     [root@fastdfs2 fdfs]# vi mod_fastdfs.conf

                     base_path=/tmp改成:base_path=/data/fastdfs

                     tracker_server=tracker:22122改成:tracker_server=192.168.1.207:22122

                     url_have_group_name = false改成:url_have_group_name = true;#url中包含group名稱

                     store_path0=/home/yuqing/fastdfs改成:store_path0=/data/fastdfs/storage

       nginx安裝

              nginx依賴包安裝

                     [root@fastdfs2 fdfs]# cd /opt

                     [root@fastdfs2 opt]# yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel

              解壓nginx

                     [root@fastdfs2 opt]# tar -zxvf nginx-1.13.12.tar.gz

              安裝nginx並添加fastdfs模塊

                     [root@fastdfs2 opt]# cd nginx-1.13.12

                     [root@fastdfs2 nginx-1.13.12]# ./configure --prefix=/usr/local/nginx --add-module=/usr/local/fastdfs-nginx-module-master/src

                     [root@fastdfs2 nginx-1.13.12]# make

                     [root@fastdfs2 nginx-1.13.12]# make install

              檢查nginx模塊

                     [root@fastdfs2 nginx-1.13.12]# cd /usr/local/nginx/sbin/

                     [root@fastdfs2 sbin]# ./nginx -V

nginx version: nginx/1.13.12
uilt by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC)
configure arguments: --prefix=/usr/local/nginx --add-module=/usr/local/fastdfs-nginx-module-master/src

                     已經把fastdfs模塊添加進去了。

              配置nginx配置文件

                     [root@fastdfs2 sbin]# cd /usr/local/nginx/conf

                     [root@fastdfs2 conf]# vi nginx-fdfs.conf

                     內容如下,ip註意改成自己的:

events {
    use epoll;

    worker_connections  1024;
}
http {
    server {
        listen       80;
        server_name  192.168.1.207;

        location /group1/M00/{
                #root /home/FastDFS/fdfs_storage/data;
                ngx_fastdfs_module;
        }
    }
    server {
        listen 8888;
    server_name 192.168.1.207;
        location / {
            root   html;
            index  index.html index.htm;
        }
    }
}
View Code

  啟動nginx

                     [root@fastdfs2 conf]# cd /usr/local/nginx/sbin/

                     [root@fastdfs2 sbin]# ./nginx -c /usr/local/nginx/conf/nginx-fdfs.conf

       訪問圖片

              文件路徑在上面的上傳圖片的測試代碼中有輸入,我們進行拼裝下:

              http://192.168.1.207/group1/M00/00/00/wKgBz1salX-ATR4PAABHO7x65CM553.jpg

 總結

  1、fastdfs相關包推薦直接到官網下載,能避免因為版本而造成的問題

  2、上傳成功而訪問卻出現nginx:400問題,極有可能url_have_group_name = false沒有改成:url_have_group_name = true;

  大家搭建的時候一定要細心再細心,也祝大家能夠順利的完成!(我是搭建了一段時間,中間各種小插曲


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Prop 基本用法 Prop的基本用法很簡單,只需要在子組件的Vue實例中定義該屬性並把值設為目標屬性的數組即可 tips:由於HTML中的屬性是不區分大小寫的,所以當使用DOM中的模板(HTML中)時,駝峰寫法需要轉化為短橫線寫法。但是,如果使用字元串模板(JS中)時,不受限制,可以為所欲為。 P ...
  • nodemailer是nodejs中的郵件發送模塊,本文使用的版本為2.5.0 --下載模塊 npm install nodemailer npm下載模塊後,在項目中引入就可以使用: var nodemailer = require('nodemailer'); 以QQ郵箱為例. --獲取授權碼 進 ...
  • 閱讀目錄 一、jQuery選擇器之id選擇器 頁面的任何操作都需要節點的支撐,開發者如何快速高效的找到指定的節點也是前端開發中的一個重點。 jQuery提供了一系列的選擇器幫助開發者達到這一目的,讓開發者可以更少的處理複雜選擇過程與性能優化,更多專註業務邏輯的編寫。 jQuery幾乎支持主流的css ...
  • 在CSS中的註釋應該這麼寫: /*被註釋掉的內容*/ ...
  • 問題 最近配了台新電腦,開始裝Node環境,去官網下載了最新的Node安裝包。安裝也沒有問題,但是在使用 這個命令的時候,就會出現 這個異常信息。 原因 最新版本的的 與`npm`版本不合適的原因(因為沒更新之前是不會的)。 解決方案 將 版本降到 版本 在 下使用 執行語句: Mac系統也差不多。 ...
  • 1 2 3 4 5 6 7 8 Document 9 120 121 122 123 124 125 126 127 128 129 玩家一 130 ... ...
  • 1 2 3 4 5 6 7 8 Document 9 10 11 12 13 49 50 53 54 121 122 123 124 125 ...
  • 在網頁的<head>中增加以上這句話,可以讓網頁的寬度自動適應手機屏幕的寬度 其中: width=device-width :表示寬度是設備屏幕的寬度 height=device-height :表示寬度是設備屏幕的寬度 initial-scale=1.0:表示初始的縮放比例(初始規模為1.0倍,即 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...