MinIO:Run On Microsoft Windows
MinIO官方网站:https://min.io/
官方文档:
https://docs.min.io/?ref=con
官方下载:
https://min.io/download
首先,从官方网站下载:minio
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
C:\Users\HP>cd "C:\Users\HP\Downloads\对象存储\minio" C:\Users\HP\Downloads\对象存储\minio>dir 驱动器 C 中的卷是 Win10_20H2_May 卷的序列号是 AEF7-4F99 C:\Users\HP\Downloads\对象存储\minio 的目录 2021/08/19 18:37 <DIR> . 2021/08/19 18:37 <DIR> .. 2021/08/19 18:37 92,127,232 minio 2021/08/19 18:27 26,468,291 minio-20210817205308.0.0.x86_64.rpm 2021/08/19 18:37 94,431,976 minio.exe 3 个文件 213,027,499 字节 2 个目录 65,214,504,960 可用字节 C:\Users\HP\Downloads\对象存储\minio> |
然后,创建一个运行MinIO的数据目录:D:\minio_data
启动MinIO:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
C:\Users\HP\Downloads\对象存储\minio>minio.exe -h NAME: minio.exe - High Performance Object Storage DESCRIPTION: Build high performance data infrastructure for machine learning, analytics and application data workloads with MinIO USAGE: minio.exe [FLAGS] COMMAND [ARGS...] COMMANDS: server start object storage server gateway start object storage gateway FLAGS: --certs-dir value, -S value path to certs directory (default: "C:\\Users\\HP\\.minio\\certs") --quiet disable startup information --anonymous hide sensitive information from logging --json output server logs and startup information in json format --help, -h show help --version, -v print the version VERSION: RELEASE.2021-08-17T20-53-08Z C:\Users\HP\Downloads\对象存储\minio> C:\Users\HP\Downloads\对象存储\minio>minio.exe server D:\minio_data +---------------------------------------------------------------+ | You are running an older version of MinIO released 1 week ago | | Update: Run `mc admin update` | +---------------------------------------------------------------+ API: http://172.21.42.119:9000 http://127.0.0.1:9000 RootUser: minioadmin RootPass: minioadmin Console: http://172.21.42.119:13498 http://127.0.0.1:13498 RootUser: minioadmin RootPass: minioadmin Command-line: https://docs.min.io/docs/minio-client-quickstart-guide $ mc.exe alias set myminio http://172.21.42.119:9000 minioadmin minioadmin Documentation: https://docs.min.io WARNING: Console endpoint is listening on a dynamic port (13498), please use --console-address ":PORT" to choose a static port. WARNING: Detected default credentials 'minioadmin:minioadmin', we recommend that you change these values with 'MINIO_ROOT_USER' and 'MINIO_ROOT_PASSWORD' environment variables (该会话,将持续挂起,...) |
MinIO:
Console:http://127.0.0.1:13498
API:http://127.0.0.1:9000
第一次运行的时候,访问【9000】,会自动跳转到Console的【13498】端口:
