zoukankan      html  css  js  c++  java
  • minio 安装以及使用

    1. 为了方便使用 docker 安装
     
    docker run -p 9000:9000 minio/minio server /export
     
    注意启动显示的 appkey secretkey 
    Created minio configuration file successfully at /root/.minio
    Endpoint: http://192.16.50.11:9000 http://127.0.0.1:9000
    AccessKey:5D2Q3FZ04LW4DIDW7R22
    SecretKey: C98uUVskiHjPaVmjTBPFdE6rh+wOJKtQIn1wvqvv
    BrowserAccess:
    http://192.16.50.11:9000 http://127.0.0.1:9000
    Command-line Access: https://docs.minio.io/docs/minio-client-quickstart-guide
    $ mc config host add myminio http://192.16.50.11:9000 5D2Q3FZ04LW4DIDW7R22 C98uUVskiHjPaVmjTBPFdE6rh+wOJKtQIn1wvqvv
    Object API (Amazon S3 compatible):
    Go: https://docs.minio.io/docs/golang-client-quickstart-guide
    Java: https://docs.minio.io/docs/java-client-quickstart-guide
    Python: https://docs.minio.io/docs/python-client-quickstart-guide
    JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
    .NET: https://docs.minio.io/docs/dotnet-client-quickstart-guide
    DriveCapacity:33GiBFree,39GiBTotal
     
    2. 登录浏览器
     
       输入 appkey  secretkey  
       界面如下:
       
     
       
    3. 具体的页面操作就比较简单了
          创建bulk
          
          上传文件
          
     
          
     
    4.  客户端使用以及文件操作
     
       下载客户端工具
     
       
     
        配置格式如下:
    mc config host add <ALIAS><YOUR-S3-ENDPOINT><YOUR-ACCESS-KEY><YOUR-SECRET-KEY><API-SIGNATURE>

       具体使用

    mc config host add dalong http://127.0.0.1:9000 76PW7KAW0TLGZ0D3MEYE CIVJihBKyXO356pKyn3jBIGZI6kbLq62W57UKeSe S3v4

     具体操作

     mc  ls   dalong 
     
     mc  cp -r * dalong/demo
     mc   ls dalong/demo
     
    5. 命令大全
     
    ls List files and folders.
    mb Make a bucket or folder.
    cat Display contents of a file.
    pipe Write contents of stdin to target.When no target is specified, it writes to stdout.
    share Generate URL for sharing.
    cp Copy one or more objects to a target.
    mirror Mirror folders recursively from a single source to single destination.
    diff Compute differences between two folders.
    rm Remove file or bucket [WARNING:Usewith care].
    events Manage bucket notification.
    watch Watchfor events on object storage and filesystem.
    policy Setpublic policy on bucket or prefix.
    session Manage saved sessions of cp and mirror operations.
    config Manage configuration file.
    update Checkfor a new software update.
    version Print version.
     
    6. 后续拓展
       集成docker   集成k8s 以及作为系统的分布式存储
  • 相关阅读:
    Eclipse 启动Tomcat 超时报错的解决方案
    ExtJS提交到服务器端的方式以及简单的登录实现
    19.CentOS7下PostgreSQL安装过程
    18.正向代理和反向代理
    17.NET Core WebApi跨域问题
    16.Ubuntu LTS 16.04安装搜狗输入法全过程记录(纯新手)
    15.基础知识相关好帖(持续更新)
    14.C#/.NET编程中的常见异常(持续更新)
    13.padding和margin,几种参数
    12.Visual Studio 2013中的默认快捷键
  • 原文地址:https://www.cnblogs.com/rongfengliang/p/7066901.html
Copyright © 2011-2022 走看看