Getting started with Minio

Chinese document address https://docs.min.io/cn/

Introduction

MinIO is an object storage service based on the Apache License v2.0 open source agreement. It is compatible with Amazon S3 cloud storage service interface, and is very suitable for storing large-capacity unstructured data, such as pictures, videos, log files, backup data, and container/virtual machine images. An object file can be of any size, from several kb to the maximum 5T.

MinIO is a very lightweight service that can be easily combined with other applications, similar to NodeJS, Redis or MySQL.

For installation methods, the official website provides many methods, including docker-based installation, installation of different operating systems, binary installation, source installation, etc. It
should be noted that port 9000 is used by default, and the firewall needs to set relevant ports for release.
Allow access to port 9000 through the following command

ufw allow 9000

The following command allows all incoming traffic on ports 9000-9010.

ufw allow 9000:9010/tcp

Get the area currently in use

firewall-cmd --get-active-zones

If it returns public

firewall-cmd --zone=public --add-port=9000/tcp --permanent

Reload takes effect

firewall-cmd --reload

Centos6 iptables settings

iptables -A INPUT -p tcp --dport 9000 -j ACCEPT
service iptables restart

If all ports on 9000-9010 are allowed to pass

iptables -A INPUT -p tcp --dport 9000:9010 -j ACCEPT
service iptables restart

I use the binary download method to download on my virtual machine, the startup command is

wget https://dl.min.io/server/minio/release/linux-amd64/minio
chmod +x minio
./minio server /data

Insert picture description here
Log in to minioadmin with the default account
Insert picture description here

I found a giant artificial intelligence learning website a few days ago, which is easy to understand and humorous. I can’t help but share it with everyone. Click to jump to the tutorial

Guess you like

Origin blog.csdn.net/huangbaokang/article/details/113242714