Linux MinIO installation and configuration (clear and clear)

Overview

Minio is a lightweight, high-performance object storage service that supports multi-cloud environments and can run on most operating systems, including Linux, Windows, MacOS, etc. Let's take a look at how to build a Minio on Linux.
Insert image description here

Install Minio

1. You need to download the Minio binary package. You can download it from the official website or use the command line ( it will take a long time to wait patiently):

wget https://dl.min.io/server/minio/release/linux-amd64/minio

2, Copy the minio binary file to the /usr/local/bin directory:

cp minio /usr/local/bin/

3, Grant execution permission:

chmod +x /usr/local/bin/minio

4, Create a directory to store Minio data:

mkdir /opt/minio-data/

5, Test starting minio (test whether it can be started)

./minio server /opt/minio-data/

6, Specify the startup port number and console port number to hang in the background:

 nohup ./minio server  --address :9000 --console-address :9001 /usr/local/bin > /opt/minio-data/minio.log &

7, Surveyor opening interface
Site: http://8.133.111.54:9001/ login
Login:minioadmin
Login:minioadmin
Insert image description here
Insert image description here

Guess you like

Origin blog.csdn.net/qq_44697754/article/details/133303180