일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- RTMP
- HLS
- 행정구역분류
- namespace
- Kubernetes
- nginx-media-server
- kubectl
- Shell script
- Sysinternals
- Java
- dart
- configmap
- golang
- Android
- aws
- Pod
- Python
- Windows10
- ffmpeg
- deployment
- macos
- VSCode
- ebpf
- spring cloud config
- service
- Flutter
- docker
- android studio
- wireshark
- aws cli
Archives
- Today
- Total
woonizzooni
AWS CLI 구성 (MacOS) 본문
AWS CLI 설치
https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/install-cliv1.html
$ pip3 install awscli --upgrade --user
Collecting awscli
Downloading https://files.pythonhosted.org/packages/8e/6d/2c212d8646f093e73d505c1b20605588c048c3d1935cc7a08423544ca5e5/awscli-1.18.31-py2.py3-none-any.whl (3.0MB)
|████████████████████████████████| 3.0MB 716kB/s
....
Successfully installed PyYAML-5.3.1 awscli-1.18.31 botocore-1.15.31 colorama-0.4.3 docutils-0.15.2 jmespath-0.9.5 pyasn1-0.4.8 python-dateutil-2.8.1 rsa-3.4.2 s3transfer-0.3.3
$ which aws ✔ 16973 23:30:38
/Users/myname/Library/Python/3.7/bin/aws
$ aws --version ✔ 16974 23:30:40
aws-cli/1.18.31 Python/3.7.6 Darwin/19.4.0 botocore/1.15.31
혹은 아래와 같이 설치.
$ python3 pip install awscli
....
$ which aws
/usr/local/bin/aws
AWS configure
https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/cli-chap-configure.html
- Access key / Secret Access key 등을 아래와 같이 입력
$ aws configure
AWS Access Key ID [xxxx]: aabb
AWS Secret Access Key [xxxx]: aabb
Default region name [xxxxx]: aaaa
Default output format [None]: json
'AWS' 카테고리의 다른 글
AWS CLI 버전1 구성 (windows 10) (0) | 2021.05.24 |
---|---|
Amazon SQS : the specified queue does not exist or you do not have access to it (0) | 2020.12.30 |
aws cli 명령 출력 제어 - Autoscaling 조회 using dictionary notation, 필터링... (0) | 2020.11.09 |
AWS SDK for Golang - Session 재사용 (0) | 2020.11.06 |
EKS 클러스터 인증 관리 (0) | 2020.03.30 |
Comments