Download and installation of file server MinIO

foreword

This article is based on the win10 operating system and Linux environment to download and start the MinIO file server.
For the creation of the virtual machine, see: http://t.csdn.cn/ZF57j

1. Win10 system

1. Download MinIO

MinIO Chinese official website: http://docs.minio.org.cn/docs/master/distributed-minio-quickstart-guide
Official website: https://docs.min.io/docs/minio-quickstart-guide.html
MinIO download Address: http://docs.minio.org.cn/docs/master/minio-client-quickstart-guide
insert image description here
But the MinIO download address on the Chinese official website shows 404, which is different from the description on the English official website. It feels the same as not being maintained. It can be downloaded on gitHub: https://github.com/minio/minio
insert image description here

2. Start MinIO

Note: You cannot double-click to open the minio.exe file, you can only use the command line to
run the command in the directory where the minio.exe file is located: minio.exe server 保存路径
Example:

minio.exe server E:\MinIO\MinIoData

run successfully
insert image description here

3. Access

Use the last address: http://127.0.0.1:9000
Enter account password: minioadmin
insert image description here
login successfully
insert image description here

2. Linux system

According to the steps prompted by the official website, execute in sequence
insert image description here

1. Download Minio

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

download successful
insert image description here

2. Increase permissions

chmod +x minio

3. start

./minio server /minioData

Start successfully
insert image description here

4. Login

Follow the login method of win10 system

3. Static login

The above two methods stop running after closing the window, change Linux to run in the background, and Win10 system can not be used

nohup ./minio server --address 0.0.0.0:9001 /minioData /minio.log 2>&1 & 

insert image description here
Close the Xshell window and enter the server IP address: 9001

Guess you like

Origin blog.csdn.net/The_girl_wait_me/article/details/124605007