#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