<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
FastDFS包含Tracker Server和Storage Server; 使用者端請求Tracker Server進行檔案的上傳與下載; Tracker Server排程Storage Server最終完成上傳與下載。
Tracker (追蹤者)
Storage (貯存器)
上傳檔案流程
查詢檔案流程
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
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
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
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!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45