All Projects → perfree → Go Fastdfs Web

perfree / Go Fastdfs Web

Licence: mit
Go-Fastdfs web管理平台

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Go Fastdfs Web

React Director Admin Template
ReactJS version of Director Responsive Admin Template Free
Stars: ✭ 304 (-12.14%)
Mutual labels:  admin
Ovine
Build entirety admin system ui blazing fast with json. (Looking for a front-end partner~ Please Contact me : )
Stars: ✭ 308 (-10.98%)
Mutual labels:  admin
Zoonavigator
Web-based ZooKeeper UI / editor / browser
Stars: ✭ 326 (-5.78%)
Mutual labels:  admin
Coreui Free React Admin Template
CoreUI React is a free React admin template based on Bootstrap 5
Stars: ✭ 3,573 (+932.66%)
Mutual labels:  admin
Easyadminbundle
EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.
Stars: ✭ 3,391 (+880.06%)
Mutual labels:  admin
Easyadmin
框架主要使用ThinkPHP6.0 + layui,拥有完善的权限的管理模块以及敏捷的开发方式,让你开发起来更加的舒服。
Stars: ✭ 315 (-8.96%)
Mutual labels:  admin
Deskapp
DeskApp Admin is a free to use Bootstrap 4 admin template.
Stars: ✭ 296 (-14.45%)
Mutual labels:  admin
Admin
A beautiful and fully-featured administration interface builder for hypermedia APIs
Stars: ✭ 335 (-3.18%)
Mutual labels:  admin
Xboot
基于Spring Boot 2.x的一站式前后端分离快速开发平台XBoot 微信小程序+Uniapp 前端:Vue+iView Admin 后端:Spring Boot 2.x/Spring Security/JWT/JPA+Mybatis-Plus/Redis/Elasticsearch/Activiti 分布式限流/同步锁/验证码/SnowFlake雪花算法ID 动态权限 数据权限 工作流 代码生成 定时任务 社交账号 短信登录 单点登录 OAuth2开放平台 客服机器人 数据大屏 暗黑模式
Stars: ✭ 3,432 (+891.91%)
Mutual labels:  admin
React Antd
基于react + redux + immutable + less + ES6/7 + webpack2.0 + fetch + react-router + antd实现的SPA后台管理系统模板
Stars: ✭ 321 (-7.23%)
Mutual labels:  admin
Umi Admin
基于蚂蚁金服 umi 可插拔的企业级 react 应用框架开发的 Admin。最核心特点:对后端开发人员友好
Stars: ✭ 310 (-10.4%)
Mutual labels:  admin
Nuxt Material Admin
Vue-CLI Boilerplate based on Nuxt and vue-material-admin template.
Stars: ✭ 310 (-10.4%)
Mutual labels:  admin
Kafka Webview
Full-featured web-based Apache Kafka consumer UI
Stars: ✭ 319 (-7.8%)
Mutual labels:  admin
Ng Admin Demo
Source of the ng-admin angular.js demo, using a dummy REST service powered by FakeRest
Stars: ✭ 310 (-10.4%)
Mutual labels:  admin
Admin On Rest Demo
Source of the admin-on-rest react.js demo, using a dummy REST service powered by FakeRest
Stars: ✭ 327 (-5.49%)
Mutual labels:  admin
Go Admin
go web api,包含gin+gorm+jwt+rbac等。
Stars: ✭ 298 (-13.87%)
Mutual labels:  admin
Grav Plugin Admin
Grav Admin Plugin
Stars: ✭ 316 (-8.67%)
Mutual labels:  admin
Admin Bro
AdminJS is an admin panel for apps written in node.js
Stars: ✭ 4,433 (+1181.21%)
Mutual labels:  admin
Bearadmin
基于ThinkPHP5+AdminLTE的后台管理系统
Stars: ✭ 332 (-4.05%)
Mutual labels:  admin
Admin
laravel + ant design vue 权限后台
Stars: ✭ 319 (-7.8%)
Mutual labels:  admin

Go-Fastdfs web管理平台

go-fastdfs 是一个简单的分布式文件存储,具有高性能,高可靠,免维护等优点,支持断点续传,分块上传,小文件合并,自动同步,自动修复。本项目为go-fastdfs的web管理端

前往 Go-Fastdfs

简单预览图

控制台

文件上传

文件列表

集群列表

注意事项

  1. 默认端口8088,修改默认端口号更改config/application-prod.properties即可
  2. 如go-fastdfs开启了按组管理,则需要填写组名,反之不用填写
  3. 进入安装页填写集群地址时,该地址需要在go-fastdfs配置文件配置管理ip白名单,否则获取不到数据!
  4. 文件列表功能需要go-fastdfs服务版本在v1.2.8以上
  5. 遇到获取不到信息的功能,先试一下本地调用go-fastdfs接口看是否能获取到

运行步骤

共提供四个版本,docker版,无环境版(需要自己安装java运行环境),Windows自带JRE环境版,Linux自带JRE环境版 下载地址

Docker安装运行

docker run --name fastdfsweb -d -p 8088:8088 perfree/fastdfsweb

无环境版(Windows运行)

解压压缩包后,直接运行start.bat

无环境版(Linux运行)

解压压缩包后,运行脚本,命令如下:

1.运行
./goFastDfsWeb.sh start
2.查看运行状态
./goFastDfsWeb.sh status
3.重新启动
./goFastDfsWeb.sh restart
4.停止
./goFastDfsWeb.sh stop

Linux自带JRE环境版

解压压缩包后,运行脚本,命令如下:

1.运行
./goFastDfsWeb.sh start
2.查看运行状态
./goFastDfsWeb.sh status
3.重新启动
./goFastDfsWeb.sh restart
4.停止
./goFastDfsWeb.sh stop

Windows自带JRE环境版

解压压缩包后,直接运行start.bat

开发说明

项目使用SpringBoot,Mybatis,Shiro进行开发,为方便后期用户安装,数据库采用Sqlite,为了代码的简洁,使用了lombok插件,请在开发前提前安装. 开发前请先将application.properties中的spring.profiles.active=prod改为dev环境,之后参照application-dev.properties进行配置

打包方式

  1. 将application.properties配置文件中spring.profiles.active的值改为prod
  2. maven运行mvn clean package
  3. 完成之后得到jar,zip,tar.gz三种格式文件

支持

微信

支付宝

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].