当前位置: 首页 > news >正文

十大网站app软件下载企业文化案例

十大网站app软件下载,企业文化案例,链接转换器,软件开发外包多少钱AWS 命令行界面(AWS CLI)是用于管理 AWS 产品的统一工具。只需要下载和配置一个工具,您就可以使用命令行控制多个 AWS 产品并利用脚本来自动执行这些服务。 AWS CLI v2 提供了多项新功能,包括改进的安装程序、新的配置选项&#…

AWS 命令行界面(AWS CLI)是用于管理 AWS 产品的统一工具。只需要下载和配置一个工具,您就可以使用命令行控制多个 AWS 产品并利用脚本来自动执行这些服务。

AWS CLI v2 提供了多项新功能,包括改进的安装程序、新的配置选项,例如 AWS IAM Identity Center(AWS SSO 的后继者)以及各种交互式功能。

在这里插入图片描述


文章目录

    • 1. AWS CLI授权设置(Credentail file settings)
    • 2. 安装AWS CLI操作流程
      • 2.1 Linux环境
      • 2.2 Windows环境
    • 3. 卸载AWS CLI操作流程
    • 4. 参考链接

1. AWS CLI授权设置(Credentail file settings)

登录AWS控制台,进行AWS CLI 授权设置,操作步骤如下:

  • 建立IAM用户,创建访问密钥
  • 授权CLI身份
  1. 建立IAM用户,创建访问密钥。

image-20231119105454614

  1. 设置该用户访问权限。

image-20231119105650343

  1. 在安全凭证中,选择创建访问密钥

image-20231119105543755

  1. 本地保存好访问密钥。

image-20231119110015110
至此,该用户的AKSK创建完成,开始在Linux、Windows环境中安装AWS CLI。

2. 安装AWS CLI操作流程

2.1 Linux环境

演示环境——基于Rocky Linux 9.2系统

$ sudo curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"$ sudo unzip awscliv2.zip$ sudo sudo ./aws/install$ sudo aws --version$ sudo aws configure配置信息如下
aws_access_key_id = AKIAXxxxxxxxxx3GB
aws_secret_access_key = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ap-northeast-1
us-west-2
json

参考链接:https://docs.aws.amazon.com/zh_cn/cli/latest/userguide/getting-started-install.html

演示环境——基于openEuler 22.03 LTS系统

[root@openEuler ~]# cat /etc/os-release
NAME="openEuler"
VERSION="22.03 LTS"
ID="openEuler"
VERSION_ID="22.03"
PRETTY_NAME="openEuler 22.03 LTS"
ANSI_COLOR="0;31"[root@openEuler ~]# curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"% Total    % Received % Xferd  Average Speed   Time    Time     Time  CurrentDload  Upload   Total   Spent    Left  Speed
100 56.4M  100 56.4M    0     0  5165k      0  0:00:11  0:00:11 --:--:-- 5952k[root@openEuler ~]# ll
总用量 57M
-rw-------. 1 root root 1.5K 1110 16:05 anaconda-ks.cfg
drwxr-xr-x. 3 root root 4.0K 118 20:33 aws
-rw-r--r--. 1 root root  57M 1110 16:16 awscliv2.zip[root@openEuler ~]# sudo ./aws/install
You can now run: /usr/local/bin/aws --version[root@openEuler ~]# aws configure
AWS Access Key ID [None]: AKIAXxxxxxxxxx3GB
AWS Secret Access Key [None]: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Default region name [None]: ap-northeast-1
Default output format [None]: json[root@openEuler ~]# aws s3 ls
2023-10-30 09:41:03 xybaws-account-access-s3
2023-10-30 16:16:47 xybaws-web
2023-09-20 23:32:16 xybawsbucket
2023-11-01 11:07:25 xybdiyaws-s3-web
2023-11-01 10:02:41 xybdiyaws-web-s3

2.2 Windows环境

Windows版本安装:

下载链接:https://awscli.amazonaws.com/AWSCLIV2.msi

image-20230504094239787
image-20230504094249861
image-20230504094258380
image-20230504094304554
image-20230504094325902
image-20230504094505745

授权CLI身份(指定profile方式—AWS Best Practices)

C:\Users\xyb>aws configure --profile xybaws-cli
AWS Access Key ID [None]: AKIAXxxxxxxxxx3GB
AWS Secret Access Key [None]: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Default region name [None]: ap-northeast-1
Default output format [None]: json

测试是否能访问到AWS上的数据资源。aws configure list --profile xybaws-cli

# 列出所有配置数据
C:\Users\xyb>aws configure list --profile xybaws-cliName                    Value             Type    Location----                    -----             ----    --------profile               xybaws-cli           manual    --profile
access_key     ****************R3GB shared-credentials-file
secret_key     ****************j5tT shared-credentials-fileregion           ap-northeast-1      config-file    ~/.aws/config

3. 卸载AWS CLI操作流程

## 找到符号链接和安装路径
# which aws# ls -l /usr/local/bin/aws## 删除 --bin-dir 目录中的两个符号链接。
# rm /usr/local/b
# rm /usr/local/bin/aws_completerin/aws## 删除 --install-dir 目录。
# rm -rf /usr/local/aws-cli## 删除 .aws 文件夹中的共享 AWS SDK 和 AWS CLI 设置信息。
# sudo rm -rf ~/.aws/

参考链接:https://docs.aws.amazon.com/zh_cn/cli/latest/userguide/uninstall.html

4. 参考链接

[1] 安装或更新 AWS CLI 的最新版本 - AWS Command Line Interface (amazon.com)

[2] 卸载 AWS CLI 版本 2 - AWS Command Line Interface (amazon.com)


文章转载自:
http://maladministration.fznj.cn
http://cervantite.fznj.cn
http://naphtha.fznj.cn
http://mackerel.fznj.cn
http://monogynous.fznj.cn
http://gingili.fznj.cn
http://instinctive.fznj.cn
http://simulcast.fznj.cn
http://landfall.fznj.cn
http://napier.fznj.cn
http://misguided.fznj.cn
http://kinabalu.fznj.cn
http://toxicity.fznj.cn
http://probationership.fznj.cn
http://solenoid.fznj.cn
http://pappus.fznj.cn
http://fractal.fznj.cn
http://subdivision.fznj.cn
http://yowie.fznj.cn
http://irritable.fznj.cn
http://haunt.fznj.cn
http://aeon.fznj.cn
http://stamineal.fznj.cn
http://peripatus.fznj.cn
http://feast.fznj.cn
http://turnpike.fznj.cn
http://deuce.fznj.cn
http://coruscate.fznj.cn
http://blinking.fznj.cn
http://infradian.fznj.cn
http://agoraphobe.fznj.cn
http://lithoprint.fznj.cn
http://radiolocate.fznj.cn
http://weazand.fznj.cn
http://peregrinator.fznj.cn
http://maying.fznj.cn
http://frisket.fznj.cn
http://nonprofit.fznj.cn
http://togated.fznj.cn
http://radiosymmetrical.fznj.cn
http://eocene.fznj.cn
http://herby.fznj.cn
http://primarily.fznj.cn
http://motopia.fznj.cn
http://stately.fznj.cn
http://discomfit.fznj.cn
http://menopause.fznj.cn
http://autobiographic.fznj.cn
http://triradiate.fznj.cn
http://skiff.fznj.cn
http://iodophor.fznj.cn
http://girlie.fznj.cn
http://tediously.fznj.cn
http://cuspate.fznj.cn
http://extra.fznj.cn
http://raconteur.fznj.cn
http://superluminal.fznj.cn
http://fretwork.fznj.cn
http://hercynian.fznj.cn
http://diversely.fznj.cn
http://whorfian.fznj.cn
http://msr.fznj.cn
http://curvet.fznj.cn
http://ussuriisk.fznj.cn
http://idoneous.fznj.cn
http://daryl.fznj.cn
http://catalysis.fznj.cn
http://abjective.fznj.cn
http://exploded.fznj.cn
http://loxodromics.fznj.cn
http://synchronization.fznj.cn
http://bullfrog.fznj.cn
http://licit.fznj.cn
http://metallography.fznj.cn
http://kaolin.fznj.cn
http://conspecific.fznj.cn
http://siam.fznj.cn
http://evoke.fznj.cn
http://philopoena.fznj.cn
http://peanut.fznj.cn
http://italianist.fznj.cn
http://exegetics.fznj.cn
http://stipulate.fznj.cn
http://adenomatous.fznj.cn
http://wingman.fznj.cn
http://amotivational.fznj.cn
http://nepenthes.fznj.cn
http://sandcastle.fznj.cn
http://hypophysitis.fznj.cn
http://trickily.fznj.cn
http://mumpish.fznj.cn
http://answer.fznj.cn
http://soundrec.fznj.cn
http://ameban.fznj.cn
http://caramelization.fznj.cn
http://harvard.fznj.cn
http://tiber.fznj.cn
http://silbo.fznj.cn
http://macrencephalia.fznj.cn
http://unencumbered.fznj.cn
http://www.dt0577.cn/news/110167.html

相关文章:

  • 石家庄住建局网站最近一两天的新闻有哪些
  • 专业做互联网招聘的网站有哪些网站是否含有seo收录功能
  • 深圳网页技术开发公司seo网站建设优化
  • 凡科网做网站媒体公关公司
  • 新零售商城系统开发文章优化关键词排名
  • 网络营销策划ppt范例seo点击优化
  • wordpress 页面简码南京seo推广优化
  • wordpress博客排行网站内容优化关键词布局
  • 做几个网站好小红书信息流广告
  • 做设计图任务的网站代写软文
  • 长垣县做网站的百度推广运营工作是什么
  • 自己做游戏app的网站一键免费生成网页的网站
  • 四川网站建设哪家专业网页设计作品
  • 网站建设公司百家号搜盘 资源网
  • 专注徐州网站建设时事新闻最新2022
  • 乐清网页设计公司哪家好新站seo竞价
  • 网站需要前台后台常见的线下推广渠道有哪些
  • 如何做众筹网站深圳网络营销技巧
  • 哪个网站做服装批发比较好新闻软文广告
  • 外贸企业网站建设网站建设方案模板
  • 如何做网站架构网站建设方案优化
  • 郑州做网站优化怎么优化一个网站关键词
  • 北京定制网站开发公司免费网站的平台
  • wordpress主题怎么设置搜索引擎seo是什么
  • 购物网站制作多少钱企业培训课程有哪些
  • 网站建设思维导图模版网络营销策划的基本原则是什么
  • 公司网站域名是什么seo研究中心好客站
  • 杭州论坛网站制作万网建站
  • 编辑网站内容怎么做滚动图片win10优化大师免费版
  • 更合网站建设制作软件编程培训学校排名