MinIO Azure Gateway
MinIO Azure 게이트웨이
MinIO Gateway adds Amazon S3 compatibility to Microsoft Azure Blob Storage.
MinIO 게이트웨이는 Microsoft Azure Blob 저장소에 Amazon S3 호환성을 추가합니다.
Run MinIO Gateway for Microsoft Azure Blob Storage
Microsoft Azure Blob 저장소용 MinIO 게이트웨이 실행
Using Docker
도커 사용
docker run -p 9000:9000 --name azure-s3 \
-e "MINIO_ACCESS_KEY=azurestorageaccountname" \
-e "MINIO_SECRET_KEY=azurestorageaccountkey" \
minio/minio gateway azure
Using Binary
바이너리 사용
export MINIO_ACCESS_KEY=azureaccountname
export MINIO_SECRET_KEY=azureaccountkey
minio gateway azure
Test using MinIO Browser
MinIO 브라우저를 사용 테스트
MinIO Gateway comes with an embedded web based object browser.
MinIO 게이트웨이에는 웹 기반 객체 브라우저가 내장되어 있습니다.
Point your web browser to http://127.0.0.1:9000 to ensure that your server has started successfully.
웹 브라우저에서 http://127.0.0.1:9000을 지정하여 서버가 성공적으로 시작되었는지 확인하세요.
Test using MinIO Client mc
MinIO 클라이언트 mc를 사용하여 테스트하십시오
mc provides a modern alternative to UNIX commands such as ls, cat, cp, mirror, diff etc. It supports file systems and Amazon S3 compatible cloud storage services.
mc는 ls, cat, cp, mirror, diff 등과 같은 UNIX 명령에 대한 최신 대안을 제공합니다. 이는 파일 시스템 및 Amazon S3 호환 클라우드 스토리지 서비스를 지원합니다.
Configure mc
mc 구성
mc config host add myazure http://gateway-ip:9000 azureaccountname azureaccountkey
List containers on Microsoft Azure
Microsoft Azure의 컨테이너 나열
mc ls myazure
[2017-02-22 01:50:43 PST] 0B ferenginar/
[2017-02-26 21:43:51 PST] 0B my-container/
[2017-02-26 22:10:11 PST] 0B test-container1/
Known limitations
알려진 제한 사항
Gateway inherits the following Azure limitations:
게이트웨이는 다음과 같은 Azure 제한 사항을 상속합니다.
Only read-only bucket policy supported at bucket level, all other variations will return API Notimplemented error.
버킷 수준에서는 읽기 전용 버킷 정책만 지원되며 다른 모든 변형은 API 비구현(Notimplemented) 오류를 반환합니다.
Bucket names with "." in the bucket name are not supported.
버킷 이름에서는 "."가 포함된 버킷 이름은 지원되지 않습니다.
Non-empty buckets get removed on a DeleteBucket() call.
비어 있지 않은 버킷은 DeleteBucket() 호출에서 제거됩니다.
List Multipart Uploads always returns empty list.
멀티파트 업로드 목록은 항상 빈 목록을 반환합니다.
Other limitations:
기타 제한 사항:
Bucket notification APIs are not supported.
버킷 알림 API는 지원되지 않습니다.
Explore Further
더 자세히 살펴보세요
mc command-line interface
mc 명령줄 인터페이스
aws command-line interface
AWS 명령줄 인터페이스
minio-go Go SDK
minio-go Go SDK