CentOS stand-alone deployment of MinIO

question

The MinIO upgrade changes too fast, and the installation steps recorded before are no longer applicable, so I recorded it again today.

solve

The steps to solve it are very simple. In fact, there are official ones, but I just need to find them. I will simply record them here:

# wget -q http://dl.minio.io/server/minio/release/linux-amd64/minio
# chmod +x minio 

# export MINIO_ACCESS_KEY=minio
# export MINIO_SECRET_KEY=minio123

# ./minio server /mnt/data --console-address ":9001" &

Guess you like

Origin blog.csdn.net/weixin_29003023/article/details/128750634