AWS CLI 配置教程
>> 安装 AWS CLI
>>> macOS
>>>> HomeBrew 安装
bash
1 | brew install awscli |
>>>> 软件包安装
- 下载 AWS CLI
- 安装
>>> Windows
>>>> msiexec 安装
powershell
1 | msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi |
>>>> 软件包安装
- 下载 AWS CLI
- 安装
>>> 测试
先测试下是否安装成功
bash
1 | aws |
>>> 配置
>>>> 使用命令行配置
bash
1 | aws configure |
>>>> 修改配置文件
~/.aws/config
ini
1 | [default] |
~/.aws/credentials
ini
1 | [default] |
>>>> 测试是否生效
常见命令行
上传
bash
1 | aws s3 cp 您好呀 s3://7k7k/ |
下载
bash
1 | aws s3 cp "s3://7k7k/您好呀" ~/Downloads |
删除
bash
1 | aws s3 rm s3://7k7k/您好呀 |
XRSec has the right to modify and interpret this article. If you want to reprint or disseminate this article, you must ensure the integrity of this article, including all contents such as copyright notice. Without the permission of the author, the content of this article shall not be modified or increased or decreased arbitrarily, and it shall not be used for commercial purposes in any way
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 XR-SEC!