Last active
February 8, 2018 17:23
-
-
Save harshavardhana/7ee9302375a181eb20f7fb3ff0a041e0 to your computer and use it in GitHub Desktop.
Minio windows batch examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem This program starts the minio batch. | |
@echo off | |
setlocal | |
path=C:\programs\minio;%path% | |
set MINIO_ACCESS_KEY=accountname1 | |
set MINIO_SECRET_KEY=secretForAccountName | |
call minio gateway azure --address=:9001 >c:\test\c1.out | |
endlocal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem This program starts the minio batch. | |
@echo off | |
setlocal | |
path=C:\programs\minio;%path% | |
set MINIO_ACCESS_KEY=minio | |
set MINIO_SECRET_KEY=minio123 | |
call minio server --config-dir=C:\test\c1 --address=:9001 >c:\test\c1.out D:\export | |
endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment