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 以及作为系统的分布式存储
  • 相关阅读:
    [linux内存]伙伴系统学习笔记(二)--内存系统初始化
    [linux内存]伙伴系统学习笔记(一)——概念
    Android 快速开发框架Afinal
    微信公众平台搭建
    Web Eclipse不识别HttpServlet
    Android 监听来电和去电状态
    Android 监听程序的安装和卸载
    Android 被忽略的UI检视利器:Hierarchy Viewer .
    Andriod 从源码的角度详解View,ViewGroup的Touch事件的分发机制
    Android 系统手机端抓包方法
  • 原文地址:https://www.cnblogs.com/rongfengliang/p/7066901.html
Copyright © 2011-2022 走看看