首頁 > 軟體

SpringBoot專案整合FastDFS+Nginx實現圖片上傳功能

2022-05-13 21:51:07

FastDFS概述

  • FastDFS是一個開源的輕量級分散式檔案系統,它對檔案進行管理,功能包括:檔案儲存、檔案同步、檔案存取(檔案上傳、檔案下載)等,解決了大容量儲存和負載均衡的問題。特別適合以檔案為載體的線上服務,如相簿網站、視訊網站等等。
  • FastDFS為網際網路量身客製化,充分考慮了冗餘備份、負載均衡、線性擴容等機制,並注重高可用、高效能等指標,使用FastDFS很容易搭建一套高效能的檔案伺服器叢集提供檔案上傳、下載等服務。
  • FastDFS由阿里資深架構師餘慶開發。

Fastdfs原理

FastDFS包含Tracker Server和Storage Server; 使用者端請求Tracker Server進行檔案的上傳與下載; Tracker Server排程Storage Server最終完成上傳與下載。

  • Tracker (追蹤者)

    • 作用是負載均衡和排程,它管理著儲存服務(Storage Server),可以理解為:“大管家,追蹤者,排程員”;
    • Tracker Server可以叢集,實現高可用,策略為“輪詢”。
  • Storage (貯存器)

    • 作用是檔案儲存,使用者端上傳的檔案最終儲存到storage伺服器上;
    • storage叢集採用分組的方式,同組內的每臺伺服器是平等關係,資料同步,目的是實現資料備份,從而高可用,而不同組的伺服器之間是不通訊的;
    • 同組內的每臺伺服器的儲存量不一致的情況下,會選取容量最小的那個,所以同組內的伺服器之間軟硬體最好保持一致。
    • Storage Server會連線叢集中的所有Tracker Server,定時向他們彙報自己的狀態,例如:剩餘空間,檔案同步情況,檔案上傳下載次數等資訊。

上傳檔案流程

查詢檔案流程

安裝Fastdfs

1、安裝gcc

yum install -y gcc gcc-c++

2、下載libfastcommon到/usr/local下

cd /usr/local
wget https://github.com/happyfish200/libfastcommon/archive/V1.0.7.tar.gz

3、解壓libfastcommon

tar -zxvf V1.0.7.tar.gz
cd libfastcommon-1.0.7

4、安裝libfastcommon

./make.sh
./make.sh install

5、下載fastdfs

wget https://github.com/happyfish200/fastdfs/archive/V5.05.tar.gz

6、解壓fastdfs並安裝

tar -zxvf V5.05.tar.gz
cd fastdfs-5.05/
./make.sh
./make.sh install

7、將conf目錄下的所有檔案複製到/etc/fdfs/

cp /usr/local/fastdfs-5.05/conf/* /etc/fdfs/

8、設定tracker

cd /etc/fdfs
vi tracker.conf

主要設定

#埠號
port=22122   
#基礎目錄(Tracker執行時會向此目錄儲存storage的管理資料)
base_path=/usr/local/fastdfs   

如果base_path不存在,則需要建立目錄

mkdir /usr/local/fastdfs

9、設定storage

cd /etc/fdfs
vi storage.conf

主要設定

#設定組名
group_name=group1
#埠
port=23000
#向tracker心跳間隔(秒)
heart_beat_interval=30
#基礎目錄,目錄不存在,需要自行建立
base_path=/usr/local/fastdfs
#存放檔案的位置,目錄不存在,需要自行建立
store_path0=/usr/local/fastdfs/fdfs_storage 
#設定tracker伺服器:IP
tracker_server=192.168.31.168:22122

10、啟動服務 啟動tracker

/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart

啟動storage

/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart

檢視服務

netstat -ntlp

整合Nginx模組

1、上傳fastdfs-nginx-module_v1.16.tar.gz 到/usr/local 2、解壓nginx模組

tar -zxvf fastdfs-nginx-module_v1.16.tar.gz

3、修改config檔案,將檔案中的 /usr/local/ 路徑改為 /usr/

cd /usr/local/fastdfs-nginx-module/src
vi config

4、將fastdfs-nginx-module/src下的mod_fastdfs.conf拷貝至/etc/fdfs下

cp mod_fastdfs.conf /etc/fdfs/

5、修改/etc/fdfs/mod_fastdfs.conf

vi /etc/fdfs/mod_fastdfs.conf
內容:
base_path=/usr/local/fastdfs
tracker_server=192.168.31.168:22122 
#url中包含group名稱
url_have_group_name=true       
#指定檔案儲存路徑(上面設定的store路徑) 
store_path0=/usr/local/fastdfs/fdfs_storage  

6、將libfdfsclient.so拷貝至/usr/lib下

cp /usr/lib64/libfdfsclient.so /usr/lib/

7、建立nginx/client目錄

mkdir -p /var/temp/nginx/client

安裝Nginx

1、 將nginx-1.8.0.tar.gz上傳到/usr/local 2、解壓:tar -zxvf nginx-1.8.0.tar.gz 3、安裝依賴庫

yum install pcre
yum install pcre-devel
yum install zlib
yum install zlib-devel
yum install openssl
yum install openssl-devel

4、進入nginx解壓的目錄下:

cd /usr/local/nginx-1.8.0

5、安裝

./configure 
--prefix=/usr/local/nginx 
--pid-path=/var/run/nginx/nginx.pid 
--lock-path=/var/lock/nginx.lock 
--error-log-path=/var/log/nginx/error.log 
--http-log-path=/var/log/nginx/access.log 
--with-http_gzip_static_module 
--http-client-body-temp-path=/var/temp/nginx/client 
--http-proxy-temp-path=/var/temp/nginx/proxy 
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi 
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi 
--http-scgi-temp-path=/var/temp/nginx/scgi 
--add-module=/usr/local/fastdfs-nginx-module/src

編譯、安裝

make
make install

安裝成功 6、拷貝組態檔http.conf和mime.types

cd /usr/local/fastdfs-5.0.5/conf
cp http.conf mime.types /etc/fdfs/

7、修改nginx組態檔

cd /usr/local/nginx/conf/
vi nginx.conf

8、關閉nginx,並啟動nginx

pkill -9 nginx
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

9、啟動nginx

SpringBoot整合Fastdfs

1、建立SpringBoot專案 2、引入依賴

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-thymeleaf</artifactId>
 </dependency>
 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-web</artifactId>
 </dependency>
 <dependency>
     <groupId>com.github.tobato</groupId>
     <artifactId>fastdfs-client</artifactId>
     <version>1.26.4</version>
 </dependency>

3、啟動類上設定

@Import(FdfsClientConfig.class)
@EnableMBeanExport(registration = RegistrationPolicy.IGNORE_EXISTING)

4、組態檔

fdfs.so-timeout=3000
fdfs.connect-timeout=1000
fdfs.thumb-image.height=60
fdfs.thumb-image.width=60
fdfs.tracker-list=192.168.31.168:22122

5、控制器

@Controller
public class UploadController {
    public static final String DIR = "http://192.168.31.168/";
    @Autowired
    private FastFileStorageClient client;
    @RequestMapping("login")
    public String login(){
        return "login";
    }
    @ResponseBody
    @RequestMapping(value = "/upload",method = RequestMethod.POST)
    public JsonResult upload(MultipartFile file) throws IOException {
        //獲得字尾名
        String extension = FilenameUtils.getExtension(file.getOriginalFilename());
        //上傳
        StorePath storePath = client.uploadFile(file.getInputStream(), file.getSize(), extension, null);
        System.out.println("save:" + storePath.getFullPath());
        return new JsonResult(1,DIR + storePath.getFullPath());
    }
}

Java物件

public class JsonResult {
    private Integer code;
    private Object data;
    //get/set/constructor
 }

6、測試頁面 頁面使用了Vue+ElementUI

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>上傳</title>
    <link rel="stylesheet" href="/elementui/index.css" rel="external nofollow"   >
    <style>
       ...
    </style>
</head>
<body>
    <div id="app">
        <el-card >
            <el-upload
                    class="avatar-uploader"
                    action="/upload"
                    :show-file-list="false"
                    :on-success="handleAvatarSuccess">
                <img v-if="imageUrl" :src="imageUrl" class="avatar">
                <i v-else class="el-icon-plus avatar-uploader-icon"></i>
            </el-upload>
        </el-card>
    </div>
    <script src="/vue/vue.js"></script>
    <script src="/elementui/index.js"></script>
    <script>
        new Vue({
            el:"#app",
            data(){
                return{
                    imageUrl: ''
                }
            },
            methods:{
                handleAvatarSuccess(res, file) {
                    console.log(res);
                    this.imageUrl = res.data;
                }
            }
        })
    </script>
</body>
</html>

上傳效果

到此這篇關於SpringBoot專案整合FastDFS+Nginx實現圖片上傳的文章就介紹到這了,更多相關SpringBoot整合FastDFS+Nginx內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com