Installing the Minio Service

Source: Internet
Author: User
Tags docker run

#MINIO SERVER
Minio is an object storage server that is published under Apache License v2.0. It is compatible with Amazon S3 Cloud storage services.
It is best for storing unstructured data such as photos, videos, log files, backups and container/VM images. The size of the object can be from a few kilobytes to a maximum of 5TB.
The Minio server is light enough to be bundled with the application stack, similar to Nodejs,redis and MySQL.

#MINIO CLIENT
The Minio Client (MC) provides a modern alternative to UNIX commands, such as Ls,cat,cp,mirror,diff,find.
It supports file systems and Amazon S3 compatible cloud storage services (AWS Signature v2 and v4).

1. Minio installation (using Docker installation)

Docker Pull Minio/minio
Docker run-it-p 9000:9000-d Minio/minio server/data

Netstat-anput | grep 9000

Docker logs 7ae46216bb3c
endpoint:http://172.18.0.2:9000 http://127.0.0.1:9000
Accesskey:ouvc1i8kn22shxvp02ix
Secretkey:uf5hvaszywhexa02z2mdttvcsszcycmkjcqolqaw

Browser Access:
http://172.18.0.2: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://172.18.0.2:9000 ouvc1i8kn22shxvp02ix Uf5hvaszywhexa02z2mdttvcsszcycmkjcqolqaw

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
View accesskey and Secretkey Login


2, install MC (source installation)
wget HTTPS://DL.MINIO.IO/CLIENT/MC/RELEASE/LINUX-AMD64/MC

chmod +x MC

MV mc/usr/local/bin/

MC--help


Installing the Minio Service

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.