AWS CloudShell을 사용하여 S3 버킷 생성, Put/Get
2481 단어 S3CloudShellAWS
처음에
CloudShell을 사용하면 인증 정보나 EC2를 사용하지 않고 S3의 조작을 할 수 있으므로 편리합니다.
버킷 생성, 폴더 생성, Put/Get
$ aws s3api create-bucket --bucket my-bucket-2021-0313 --region ap-northeast-1
$ aws s3api create-bucket --bucket my-bucket-2021-0313 --region ap-northeast-1
vi
명령을 사용할 수 있습니다 vi sample.txt
$ aws s3 cp sample.txt s3://my-bucket-2021-0313/
$ aws s3api put-object --bucket my-bucket-2021-0313 --key myfolder/
$ aws s3 ls s3://my-bucket-2021-0313
PRE myfolder/
2021-03-13 09:09:19 14 sample.txt
--key sample.txt content.txt
는 sample.txt라는 객체 이름의 정보를 가져오고 sample.txt의 내용은 content.txt에 씁니다.$ aws s3api get-object --bucket my-bucket-2021-0313 --key sample.txt content.txt
{
"AcceptRanges": "bytes",
"LastModified": "2021-03-13T09:09:19+00:00",
"ContentLength": 14,
"ETag": "\"25dd5dedf3d565b1ac293eabeb2932da\"",
"ContentType": "text/plain",
"Metadata": {}
}
$ aws s3 cp s3://my-bucket-2021-0313/myfolder/ ./testdir --recursive
download: s3://my-bucket-2021-0313/myfolder/file2.txt to testdir/file2.txt
download: s3://my-bucket-2021-0313/myfolder/file1.txt to testdir/file1.txt
S3에서 CloudShell로 다운로드한 파일을 로컬로 다운로드
1.Actions의 Download file을 선택
2. 파일 경로 입력
로컬에서 CloudShell로 파일 업로드
1.Actions Upload file 선택
2. 파일 선택
Reference
이 문제에 관하여(AWS CloudShell을 사용하여 S3 버킷 생성, Put/Get), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/quryu/items/0cd379469444203d5866
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
1.Actions Upload file 선택
2. 파일 선택
Reference
이 문제에 관하여(AWS CloudShell을 사용하여 S3 버킷 생성, Put/Get), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/quryu/items/0cd379469444203d5866텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)