一、安装MinIO服务
1、Linux安装
wget https://dl.min.io/server/minio/release/linux-amd64/minio
chmod +x minio
export MINIO_ROOT_USER=admin
export MINIO_ROOT_PASSWORD=admin123
./minio server /mnt/data --console-address ":9001"
2、Windows安装
https://dl.minio.io/server/minio/release/windows-amd64/minio.exe
minio.exe server F:\Data --console-address ":9001"
二、使用MinIO客户端
1、下载MinIO客户端
http://dl.minio.org.cn/client/mc/release/windows-amd64/mc.exe
2、常用命令
# 查询mc host配置
.\mc.exe config host ls
# 添加minio服务
.\mc.exe config host add myminio http://192.168.121.200:9000 admin admin123
# 删除host
.\mc.exe config host remove myminio
# 查看指定服务的文件
.\mc.exe ls myminio