MinIO - 13. MinIO NAS 게이트웨이

목록

MinIO NAS Gateway

MinIO NAS 게이트웨이

MinIO Gateway adds Amazon S3 compatibility to NAS storage.

MinIO 게이트웨이는 NAS 스토리지에 Amazon S3 추가합니다.

You may run multiple minio instances on the same shared NAS volume as a distributed object gateway.

분산 객체 게이트웨이와 동일한 공유 NAS 볼륨에서 여러 minio 인스턴스를 실행할 수 있습니다.

Run MinIO Gateway for NAS Storage

NAS 스토리지용 MinIO 게이트웨이 실행

Using Docker

도커 사용

Please ensure to replace /shared/nasvol with actual mount path.

/shared/nasvol을 실제 마운트 경로로 바꾸십시오.

docker run -p 9000:9000 --name nas-s3 \ -e "MINIO_ACCESS_KEY=minio" \ -e "MINIO_SECRET_KEY=minio123" \ -v /shared/nasvol:/container/vol \ minio/minio gateway nas /container/vol

Using Binary

바이너리 사용

export MINIO_ACCESS_KEY=minio export MINIO_SECRET_KEY=minio123 minio gateway nas /shared/nasvol

Test using MinIO Browser

MinIO 브라우저를 사용하여 테스트하십시오

MinIO Gateway comes with an embedded web based object browser. Point your web browser to http://127.0.0.1:9000 to ensure that your server has started successfully.

MinIO 게이트웨이에는 웹 기반 객체 브라우저가 내장되어 있습니다. 웹 브라우저에서 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 filesystems and Amazon S3 compatible cloud storage services.

mc는 ls, cat, cp, mirror, diff 등과 같은 UNIX 명령에 대한 최신 대안을 제공합니다. 이는 파일 시스템 및 Amazon S3 호환 클라우드 스토리지 서비스를 지원합니다.

Configure mc

mc 구성

mc config host add mynas http://gateway-ip:9000 access_key secret_key

mc 구성 호스트는 mynas http://gateway-ip:9000 access_key secret_key를 추가합니다

List buckets on nas

nas의 버킷 목록

mc ls mynas [2017-02-22 01:50:43 PST] 0B ferenginar/ [2017-02-26 21:43:51 PST] 0B my-bucket/ [2017-02-26 22:10:11 PST] 0B test-bucket1/

Explore Further

더 자세히 살펴보세요

mc command-line interface

mc 명령줄 인터페이스

aws command-line interface

AWS 명령줄 인터페이스

minio-go Go SDK

minio-go Go SDK