我的编程空间,编程开发者的网络收藏夹
学习永远不晚

MINIO部署

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

MINIO部署

一、MINIO单机部署

Linux下载地址:https://min.io/download#/linux

  1. 服务器创建新的文件夹;
    mkdir -p /home/minio/data
  2. 上传下载好的minio文件,到指定的目录下/home/minio/data

  3. 执行命令;

    chmod +x minio    //给予权限export MINIO_ACCESS_KEY=minioadmin   //创建账号export MINIO_SECRET_KEY=minioadmin   //创建密码
  4. 启动minio;
    nohup ./minio server  --address :9000 --console-address :9001 /home/minio/data > /home/minio/data/minio.log &

    自定义端口方式:自定义启动端口号以及控制台端口号,不设置则控制台会自动配置其他端口号,非常不方便

  5. 查看状态;

    ps -  ef|grep   minio
  6. 至此安装启动完成;
  7. 访问:127.0.0.1:9001/(注意:端口是控制台的端口);

  8. 输入步骤3设置的账号密码,进入到了管理页面;
  9. 设置桶,创建桶,在服务器中会生成一个和桶名称相同的文件夹;

  10. 设置桶规则;修改权限public,设置规则为readwrite;
  11. 测试上传文件到桶里边;
  12. 上传完文件之后在服务器的桶中会生成一个文件

二、JAVA集成

1) pom.xml导入相关依赖;

    io.minio    minio    8.3.5    com.squareup.okhttp3    okhttp    4.9.1

2)配置文件中增加配置信息;

minio:  endpoint: http://127.0.0.1:9000  accesskey: minioadmin             #用户名  secretKey: minioadmin             #密码  bucketName: files                  #桶名称

3)配置创建实体类;

@Data@Component@ConfigurationProperties(prefix = "minio")public class MinioProp {        private String endpoint;        private String accesskey;        private String secretKey;        private String bucketName;}

4)创建minioconfig;

@Configuration@EnableConfigurationProperties(MinioProp.class)public class MinioConfig {    @Autowired    private MinioProp minioProp;    @Bean    public MinioClient minioClient(){        MinioClient minioClient = MinioClient.builder().endpoint(minioProp.getEndpoint()).                credentials(minioProp.getAccesskey(), minioProp.getSecretKey()).region("china").build();        return minioClient;    }}

5)编写minioUtil类;

上传:

public JSONObject uploadFile(MultipartFile file) throws Exception {    JSONObject res = new JSONObject();    res.put("code", 0);    // 判断上传文件是否为空    if (null == file || 0 == file.getSize()) {        res.put("msg", "上传文件不能为空");        return res;    }    InputStream is=null;    try {        // 判断存储桶是否存在        createBucket(minioProp.getBucketName());        // 文件名        String originalFilename = file.getOriginalFilename();        // 新的文件名 = 存储桶名称_时间戳.后缀名        String fileName = minioProp.getBucketName() + "_" + IdUtil.getId() + originalFilename.substring(originalFilename.lastIndexOf("."));        // 开始上传        is=file.getInputStream();        PutObjectArgs putObjectArgs = PutObjectArgs.builder()                .bucket(minioProp.getBucketName())                .object(fileName)                .contentType(file.getContentType())                .stream(is, is.available(), -1)                .build();        minioClient.putObject(putObjectArgs);        res.put("code", 1);        res.put("msg",  minioProp.getBucketName() + "/" + fileName);        res.put("bucket", minioProp.getBucketName());        res.put("fileName", fileName);        return res;    }  catch (Exception e) {        e.printStackTrace();        log.error("上传文件失败:{}", e.getMessage());    }finally {        is.close();    }    res.put("msg", "上传失败");    return res;}

下载:

public void downLoad(String fileName,String realFileName, HttpServletResponse response, HttpServletRequest request) {    InputStream is=null;    OutputStream os =null;    try {        is=getObjectInputStream(fileName,minioProp.getBucketName());        if(is!=null){            byte buf[] = new byte[1024];            int length = 0;            String codedfilename = "";            String agent = request.getHeader("USER-AGENT");            System.out.println("agent:" + agent);            if ((null != agent && -1 != agent.indexOf("MSIE")) || (null != agent && -1 != agent.indexOf("Trident"))) {                String name = URLEncoder.encode(realFileName, "UTF8");                codedfilename = name;            } else if (null != agent && -1 != agent.indexOf("Mozilla")) {                codedfilename = new String(realFileName.getBytes("UTF-8"), "iso-8859-1");            } else {                codedfilename = new String(realFileName.getBytes("UTF-8"), "iso-8859-1");            }            response.reset();            response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(realFileName.substring(realFileName.lastIndexOf("/") + 1), "UTF-8"));            response.setContentType("application/octet-stream");            response.setCharacterEncoding("UTF-8");            os = response.getOutputStream();            // 输出文件            while ((length = is.read(buf)) > 0) {                os.write(buf, 0, length);            }            // 关闭输出流            os.close();        }else{            log.error("下载失败");        }    }catch (Exception e){        e.printStackTrace();        log.error("错误:"+e.getMessage());    }finally {        if(is!=null){            try {                is.close();            } catch (IOException e) {                e.printStackTrace();            }        }        if(os!=null){            try {                os.close();            } catch (IOException e) {                e.printStackTrace();            }        }    }}

删除:

public void deleteObject(String objectName) {    try {        RemoveObjectArgs removeObjectArgs = RemoveObjectArgs.builder()                .bucket(minioProp.getBucketName())                .object(objectName)                .build();        minioClient.removeObject(removeObjectArgs);    }catch (Exception e){        log.error("错误:"+e.getMessage());    }}

查看:一个url

例如127.0.0.1:9000/files/files_1660635187005.png;

格式:ip:端口/桶/文件在桶里的真实名字;

完整的util类:

import com.alibaba.fastjson2.JSONObject;import com.crcc.statistics.common.entity.MinioProp;import io.minio.*;import lombok.SneakyThrows;import lombok.extern.slf4j.Slf4j;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import org.springframework.web.multipart.MultipartFile;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.net.URLEncoder;import java.util.HashMap;import java.util.Map;@Slf4j@Componentpublic class MinioUtils {    @Autowired    private MinioClient minioClient;    @Autowired    private MinioProp minioProp;        @SneakyThrows    public void createBucket(String bucketName) {        if (!minioClient.bucketExists(BucketExistsArgs.builder().bucket(bucketName).build())) {            minioClient.makeBucket(MakeBucketArgs.builder().bucket(bucketName).build());        }    }    @SneakyThrows    public InputStream getObjectInputStream(String objectName,String bucketName){        GetObjectArgs getObjectArgs = GetObjectArgs.builder()                .bucket(bucketName)                .object(objectName)                .build();        return minioClient.getObject(getObjectArgs);    }    public JSONObject uploadFile(MultipartFile file) throws Exception {        JSONObject res = new JSONObject();        res.put("code", 0);        // 判断上传文件是否为空        if (null == file || 0 == file.getSize()) {            res.put("msg", "上传文件不能为空");            return res;        }        InputStream is=null;        try {            // 判断存储桶是否存在            createBucket(minioProp.getBucketName());            // 文件名            String originalFilename = file.getOriginalFilename();            // 新的文件名 = 存储桶名称_时间戳.后缀名            String fileName = minioProp.getBucketName() + "_" + IdUtil.getId() + originalFilename.substring(originalFilename.lastIndexOf("."));            // 开始上传            is=file.getInputStream();            PutObjectArgs putObjectArgs = PutObjectArgs.builder()                    .bucket(minioProp.getBucketName())                    .object(fileName)                    .contentType(file.getContentType())                    .stream(is, is.available(), -1)                    .build();            minioClient.putObject(putObjectArgs);            res.put("code", 1);            res.put("msg",  minioProp.getBucketName() + "/" + fileName);            res.put("bucket", minioProp.getBucketName());            res.put("fileName", fileName);            return res;        }  catch (Exception e) {            e.printStackTrace();            log.error("上传文件失败:{}", e.getMessage());        }finally {            is.close();        }        res.put("msg", "上传失败");        return res;    }    public void downLoad(String fileName,String realFileName, HttpServletResponse response, HttpServletRequest request) {        InputStream is=null;        OutputStream os =null;        try {            is=getObjectInputStream(fileName,minioProp.getBucketName());            if(is!=null){                byte buf[] = new byte[1024];                int length = 0;                String codedfilename = "";                String agent = request.getHeader("USER-AGENT");                System.out.println("agent:" + agent);                if ((null != agent && -1 != agent.indexOf("MSIE")) || (null != agent && -1 != agent.indexOf("Trident"))) {                    String name = URLEncoder.encode(realFileName, "UTF8");                    codedfilename = name;                } else if (null != agent && -1 != agent.indexOf("Mozilla")) {                    codedfilename = new String(realFileName.getBytes("UTF-8"), "iso-8859-1");                } else {                    codedfilename = new String(realFileName.getBytes("UTF-8"), "iso-8859-1");                }                response.reset();                response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(realFileName.substring(realFileName.lastIndexOf("/") + 1), "UTF-8"));                response.setContentType("application/octet-stream");                response.setCharacterEncoding("UTF-8");                os = response.getOutputStream();                // 输出文件                while ((length = is.read(buf)) > 0) {                    os.write(buf, 0, length);                }                // 关闭输出流                os.close();            }else{                log.error("下载失败");            }        }catch (Exception e){            e.printStackTrace();            log.error("错误:"+e.getMessage());        }finally {            if(is!=null){                try {                    is.close();                } catch (IOException e) {                    e.printStackTrace();                }            }            if(os!=null){                try {                    os.close();                } catch (IOException e) {                    e.printStackTrace();                }            }        }    }    public void deleteObject(String objectName) {        try {            RemoveObjectArgs removeObjectArgs = RemoveObjectArgs.builder()                    .bucket(minioProp.getBucketName())                    .object(objectName)                    .build();            minioClient.removeObject(removeObjectArgs);        }catch (Exception e){            log.error("错误:"+e.getMessage());        }    }}

三、总结:

部署相对简单,JAVA集成快,上手更容易;

来源地址:https://blog.csdn.net/qq_39522120/article/details/127303458

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

MINIO部署

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

2023-09-07

Docker部署Minio (服务器上部署Minio)

Minio简介: MinIO 是一个基于Apache License v2.0开源协议的对象存储服务。它兼容亚马逊S3云存储服务接口,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等,而一个对象文件
2023-08-18

Docker compose部署minio服务

这篇文章主要介绍了Docker compose部署minio服务,minio的作用就是用来存储文件的,比如图片、视频、音频等各种类型的文件,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的朋友可以参考一下
2022-11-13

Docker部署MinIO对象存储服务器结合Cpolar实现远程访问

🔥博客主页: 小羊失眠啦. 🎥系列专栏:《C语言》 《数据结构》 《Linux》《Cpolar》 ❤️感谢大家点赞👍收藏⭐评论✍️ 前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣
Docker部署MinIO对象存储服务器结合Cpolar实现远程访问
2023-12-22

Docker部署MinIO对象存储服务器结合内网穿透实现远程访问

文章目录 前言1. Docker 部署MinIO2. 本地访问MinIO3. Linux安装Cpolar4. 配置MinIO公网地址5. 远程访问MinIO管理界面6. 固定MinIO公网地址 前言 MinIO是一个开源的对
Docker部署MinIO对象存储服务器结合内网穿透实现远程访问
2023-12-22

python3 部署

前几天去听了北京python-conf,老师们都在宣传python3的各种好处,和自力讨论之后,决定把自己的小项目都升级到python3。其实代码改起来还好,因为都是比较小的项目,问题主要卡在部署。我使用的云服务器都是ubuntu14.04
2023-01-31
2023-09-01

MariaDB部署

系统:CentOS Linux release 7.8.2003 (Core) 内核:3.10.0-693.el7.x86_64 1.安装启动MariaDB 安装mariadb 和 mariadb-server yum install -y mariadb
MariaDB部署
2017-09-25

Docker部署

部署Docker 1.部署docker相关此章描述在新的服务器上安装docker容器。1.1 概述Docker 是一个开源的应用容器引擎,基于 Go 语言 并遵从 Apache2.0 协议开源。Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级、可
Docker部署
2020-05-25
2024-04-02

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录