zoukankan      html  css  js  c++  java
  • 安装minio单机

    $ wget https://dl.min.io/server/minio/release/linux-amd64/minio -P ~/bin && cd ~/bin
    $ wget http://dl.minio.org.cn/server/minio/release/linux-amd64/minio -P ~/bin && cd ~/bin
    $ chmod +x minio
    $ minio --help


    # 下载 minio
    wget https://dl.min.io/server/minio/release/linux-amd64/minio -P ~/bin && cd ~/bin
    # 添加可执行权限
    chmod +x minio
    # 设置登录minio的 access key
    export MINIO_ACCESS_KEY=minioadmin
    # 设置登录minio的 secret key
    export MINIO_SECRET_KEY=minioadmin
    # 启动 minio

    mkdir -pv /opt/data/minio

    #nohup ./minio server --address 0.0.0.0:9001 /opt/data/minio >/dev/null 2>&1 &
    #nohup ./minio server /opt/data/minio >/dev/null 2>&1 &

    mkdir -pv /opt/log/minio
    cd /root/bin
    nohup ./minio server /opt/data/minio >> /opt/log/minio/info.log 2> /opt/log/minio/error.log &

    ps -ef| grep minio

    10.2.2.149:9000

  • 相关阅读:
    Game Engine Architecture 3
    Game Engine Architecture 2
    补码
    工厂模式
    Game Engine Architecture 1
    YDWE Keynote
    3D Math Keynote 4
    3D Math Keynote 3
    3D Math Keynote 2
    OGRE中Any 类型的实现
  • 原文地址:https://www.cnblogs.com/tonggc1668/p/15756267.html
Copyright © 2011-2022 走看看