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

做家教网站如何招生影院禁止18岁以下观众观影

做家教网站如何招生,影院禁止18岁以下观众观影,wordpress手动更新插件,开发亚马逊云科技(AWS)是全球云行业最#x1f525;火的云平台#xff0c;在全球经济形势不好的大背景下#xff0c;通过网课学习亚马逊云科技AWS基础备考亚马逊云科技AWS证书#xff0c;对于找工作或者无背景转行做AWS帮助巨大。欢迎大家关注小李哥#xff0c;及时了解世界最前…亚马逊云科技(AWS)是全球云行业最火的云平台在全球经济形势不好的大背景下通过网课学习亚马逊云科技AWS基础备考亚马逊云科技AWS证书对于找工作或者无背景转行做AWS帮助巨大。欢迎大家关注小李哥及时了解世界最前沿的云计算、AI技术快速成为国际云计算的专家。 什么是Udemy Udemy作为全球最大、最优质的网课平台之一上面有非常多优质的亚马逊云科技AWS课程。但Udemy上的亚马逊云科技AWS课程最便宜的也要几十刀最贵能到上百刀十分昂贵。今天小李哥就给大家盘点全网最全的 Udemy上AWS免费高分课程大合集(选择标准为评分4.4/5左右好评500左右的课程)。 推荐优质学习资源 小李哥按课程方向类别给大家做了推荐大家根据自己的需求选择。大家参考中的课程编号(非图1编号)排序为评分从高➡️低的排名 1️⃣ 用于AWS证书备考 3号Serverless computing in AWS: 适合云从业者(4.6分) 11号AWS VPC Transit Gateway - Hands On Learning! 适合助理级架构师(4.4分) 2️⃣ 适合无背景的AWS小白学习的课程 以下几门课程适用于完全没有背景的非IT人员销售、市场等、或者有初级背景的云计算从业者 4 AWS Certified Solutions Architect Associate Introduction(4.6分) 5 Amazon Web Services - Learning and Implementing AWS Solution(4.5分) 6 All About AWS Lambda and Serverless(4.5分) 9 Amazon Web Services (AWS) EC2: An Introduction(4.4分) 13 A Practical Introduction to Cloud Computing(4.3分) 3️⃣ AWS Serverless服务(适合云上软件开发) 7 AWS Tutorials - DynamoDB and Database Migration Service(4.4分) 8 Multitier architecture with AWS(4.4分) 15 AWS Serverless(4.0分) 4️⃣ AWS网络(适合网络工程师/DevOps) 2 Amazon Web Services (AWS) - Zero to Hero(4.7分) 5️⃣ AWS架构/系统设计(适合☁️上开发/架构师) 12 Cloud Computing With Amazon Web Services(4.3分) 6️⃣ AWS DynamoDB and DMS (适合☁️数据岗) 1 Starting your Career with Amazon AWS(4.7分) 7️⃣ AWS cloudformation (软件定义代码、适合云上开发/DevOps) 14 Introduction to Cloud Computing for Beginners in 30 mins(4.2分) 8️⃣ AWS EC2 (适合云上DevOps/SysOps) 10 Amazon Web Services (AWS): CloudFormation(4.4分) Udemy上的免费动手实验讲解 今天给大家介绍的是如何用AWS Boto3 Python SDK创建EC2 首先我们安装Boto 3 SDK: pip install awscli boto3 然后我们本地配置AWS的秘钥key aws configure 示例输入 $ aws configure AWS Access Key ID [None]: ABCDEFGHIJKLMNOPQRST AWS Secret Access Key [None]: abcdefghijklmnopqrstuvwxyz1234567890 Default region name [None]: us-west-2 Default output format [None]: json接下来我们使用Python配置登录EC2服务器的SSH key pair: import boto3 ec2 boto3.resource(ec2)# create a file to store the key locally outfile open(ec2-keypair.pem,w)# call the boto ec2 function to create a key pair key_pair ec2.create_key_pair(KeyNameec2-keypair)# capture the key and store it in a file KeyPairOut str(key_pair.key_material) print(KeyPairOut) outfile.write(KeyPairOut) 创建成功后我们利用Python创建一个EC2服务器同时在EC2创建时启动NGINX。 import boto3ec2 boto3.resource(ec2)# User data script to install Nginx user_data_script #!/bin/bash sudo apt-get update sudo apt-get install -y nginx sudo service nginx start # Create a new EC2 instance instances ec2.create_instances(ImageIdami-00b6a8a2bd28daf19,MinCount1,MaxCount2,InstanceTypet2.micro,KeyNameec2-keypair,UserDatauser_data_script )# Print the instance IDs for instance in instances:print(fCreated instance with ID: {instance.id})对于保护EC2运行提高云服务的稳定性、可用性我们要定期为EC2创建镜像。在AWS上镜像的形式叫做AMI以下是常见AMI的代码。 import boto3ec2 boto3.client(ec2)# Replace with your instance ID instance_id i-1234567890abcdef0# Create an AMI from the instance response ec2.create_image(InstanceIdinstance_id,NameMyServerImage,DescriptionAn AMI of my server,NoRebootTrue # Set to False if you want to reboot the instance before creating the image )image_id response[ImageId] print(fAMI created with ID: {image_id})如果我们想重启、删除一个EC2服务器可以用以下代码 重启 import boto3ec2 boto3.client(ec2)# Replace with your instance ID instance_id i-1234567890abcdef0# Reboot the instance response ec2.reboot_instances(InstanceIds[instance_id] )print(fRebooted instance: {instance_id})删除 import boto3ec2 boto3.client(ec2)# Replace with your instance ID instance_id i-1234567890abcdef0# Terminate the instance response ec2.terminate_instances(InstanceIds[instance_id] )print(fTerminated instance: {instance_id})对于EC2维护和访问如果可以分配固定IP将会保证EC2重启后IP保持不变。我们使用如下代码实现IP固定分配Elastic IP import boto3ec2 boto3.client(ec2)# Allocate a new Elastic IP address response ec2.allocate_address(Domainvpc )allocation_id response[AllocationId] print(fElastic IP allocated with ID: {allocation_id})# Replace with your instance ID instance_id i-1234567890abcdef0# Associate the Elastic IP with the instance response ec2.associate_address(InstanceIdinstance_id,AllocationIdallocation_id )print(fElastic IP associated with instance: {instance_id})
http://www.hkea.cn/news/14527977/

相关文章:

  • 如何做网站弹窗广告建设门户网站价格
  • 哪个网站做欧洲旅游攻略好宽带推广方案
  • 天津市哪里有做网站广告的临沂专门做网站的
  • 网站收录不增加大连网页制作培训
  • 济南电商培训基地快照首页排名优化服务
  • 大朗网站建设公司网络规划设计师考试资料百度云
  • 辽宁网站建设企业wordpress 百度 插件怎么用
  • 天津网站建设业务wordpress视频加密
  • wordpress影视主题模板免费下载seo快速建站
  • 做个简单网站大概多少钱平面设计月薪大概多少
  • 网站程序制作软件网络营销推广方案pdf
  • 公司网站 数据库中国建筑师室内设计网
  • 智慧团建官方网站电脑版外包开发app需要多少钱
  • 子洲网站建设制作优化关键词排名外包
  • 网站设计与开发专家wordpress 上一篇下一篇 文章的图片
  • 广州网站推广电话做网站公司什么条件
  • 制作广告网站的步骤推广网站怎么做
  • 没有公司可以做网站吗网页设计类型与风格
  • 零食网站制作的建设大纲页面设计原型图
  • 深圳外贸网站优化哪家好企业网站做app
  • 公司建设网站申请报告范文手机网站快速建设
  • wordpress5.0正式发布网站文章在哪发布做seo
  • 自己做网站哪种好做提高网站权重的作用
  • 网站建设与运营答案广州海珠区租房子一般多少钱
  • 泰州网站开发做网站能用自己电脑吗
  • 自己怎么做网上注册免费的网站某网站开发项目进度表
  • 长沙市网站开发网站开发工程师职业
  • 重庆长寿网站设计公司推荐网络营销存在的问题及解决对策
  • 做维修那个网站发布信息好网站建设的介绍
  • 做网站服务器应该怎么配置vps wordpress cpu占用过高