windows10 install minio

1. The first step is to download minio first.


Different versions can be downloaded from the official website

Download address: MinIO | Code and downloads to create high performance object storage

2. Start minio


Remember not to double-click minio,
1. Put the downloaded minio.exe into F (I put it in F here), enter cmd in the address bar and press Enter
2. Create a new minioData folder for storage The file directory uploaded by minio
3. Enter minio.exe server F:\minioData (command to start minio)

3. Log in to the background of minion to check whether the installation of minio is successful


Enter http://localhost:9000 in the browser to log in to the background

4. Change password


In the directory where minio.exe is located, enter the cmd window
and enter the set MINIO_ACCESS_KEY=minioadmin command to modify the ACCESS-KEY.
Enter the set MINIO_SECRET_KEY=minioadmin command to modify the SECRET-KEY.
Enter minio.exe server F:\minioData to start minio.
At this time, when you log in to the minio background, the account number is: minioadmin, and the password is: minioadmin

5. Modify the port number


The default port number of minio is 9000.
If you need to change it, you can use this line command minio.exe server D:\minioData

 

6. Test preview

 

Guess you like

Origin blog.csdn.net/Angel_asp/article/details/128544612