文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

MINIO部署

2023-09-07 06:42

关注

一、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

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯