Sean Yu

IoT Specialty/Microsoft MVP/MCT

Cloud Iaas, Paas, Saas,云原生一网打尽


Azure 入门知识汇总

云计算的定义 https://docs.microsoft.com/zh-cn/learn/modules/cmu-cloud-computing-overview/1-define-cloud-computing/?ns-enrollment-type=LearningPath&ns-enrollment-id=learn.cmu-cloud-computing.cmu-cloud-computing-basics&WT.mc_id=AZ-MVP-5003757   云计算的发展历史 https://docs.microsoft.com/zh-cn/learn/modules/cmu-cloud-computing-overview/3-evolution/?ns-enrollment-type=LearningPath&ns-enrollment-id=learn.cmu-cloud- …

Azure Student

大学生云计算入门(2)-在云上创建第一个web站点

本文介绍,在windows 虚拟机上部署第一个website , 如何创建windows 虚拟机,请参考《创建第一台windows 虚拟机》。   视频讲解:   图文步骤: 本文使用 SSCMS,是一款免费的CMS系统。官网:SiteServer CMS - 开源、跨平台、企业级CMS系统 (sscms.com) 步骤如下: 配置IIS服务器; 进入控制面板-apps 程序和功能-打开或关闭windows 功能   将 Internet Information Services 下的后两项展开并全部勾选,下载缺失的文件:     配置dotnet core 托管捆绑包;   下载捆绑包:https://dotnet.microsoft.com/download/dotnet/3.1?WT.mc_id=AZ-MVP-5003757 选择 hosting 按钮并下载 安装下载的文件 …

Azure Video VM Student Lab

大学生云计算入门(1)-在云上创建第一台虚拟机

本文介绍: 在Azure上创建第一台Windows 虚拟机。 本文参照文档:https://docs.microsoft.com/zh-cn/azure/virtual-machines/windows/quick-create-portal?WT.mc_id=AZ-MVP-5003757   视频讲解:   图文步骤: 点击创建资源:     点击左侧“计算”,右侧选择“虚拟机”   输入如下参数: 资源组:新建一个新的资源组,命名为  你的姓名-001 虚拟机名称:命名为你的 姓名-001 区域选择:东亚或东南亚,东亚在香港,东南亚在新加坡 可用性选项保持默认 影像:选择windows 10 pro Version 2004-Gen1 大小:选择 B4MS   用户名和密码自行设置 入站端口保留 RDP3389     点击下一步创建磁盘,点击创建并附加新磁盘:       …

Azure Video VM Student

注册Azure 学生 试用 订阅

本文介绍如何创建Azure 学生免费订阅。   Azure 免费学生帐户套餐包括: 可在 12 个月内免费访问某些 Azure 服务。 前 12 个月内使用的额度。 免费访问某些软件开发人员工具。 是面向学生的套餐,可提供 100 美元的额度和免费的开发人员工具。 此外,无需信用卡即可注册。   登录如下网址 https://azure.microsoft.com/zh-cn/free/students/?WT.mc_id=AZ-MVP-5003757 或扫码访问: 点击 Start Free 按钮:   点击之后,如果出现下面的页面,则点击“使用另一个账户” 输入学校邮箱和密码,通常是 xxxx@xxx.edu.cn, 点击下一步。   有可能需要你在弹出的学校页面再次登录一遍:   填写你的基本信息:   勾选 我同意,点击注册按钮   依次可以看到如下界面:   …

Azure Subscription Student

Microsoft Connected Vehicle Platform (MCVP) -微软车联网知识汇总

The Microsoft Connected Vehicle Platform (MCVP) is the digital chassis upon which automotive original equipment manufacturers (OEMs) can deliver value-add services to their customers. These services areas include: In-vehicle experiences Autonomous driving Advanced navigation Customer engagement and insights Telematics and prediction services Connectivity and over the air updates (OTA)     案例: …

Azure MCVP

边缘设备上的存储-Azure IoT Edge 上的Blob存储

本文介绍Azure IoT Edge 上的Blob 存储配置。 当然,Blob容器也可以部署在本地Docker中或K8S中,IoT Edge 不是唯一的选择。   通过在IoT Edge上部署Blob存储,可以将原来直接上传到云端Storage的代码进行复用,文件可以存储在边缘上,然后利用blob容器的同步功能,自动将文件同步到云端。 本文部署过程参照: https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-deploy-blob?view=iotedge-2020-11&WT.mc_id=AZ-MVP-5003757 本文配置步骤参照: https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-store-data-blob?view=iotedge-2020-11&WT.mc_ …

Azure IOT Video IoT Edge

Azure Functions 同步Azure Storage Blob

本文介绍: 一种通过Azure Functions 同步 blob的方法。   在之前的内容中,我们分享过Azure Functions+azcopy的同步方式,今天我们介绍在Functions中使用blob sdk进行同步,使用该方案,可以将Functions 同时部署到云端或边缘侧。   示例代码:https://github.com/sean8544/azure-blob-sync-by-azure-function-blob-trigger   using System; using System.IO; using System.Linq; using System.Threading.Tasks; using Azure; using Azure.Storage.Blobs; using Azure.Storage.Blobs.Models; using Azure. …

Azure Storage Functions Azure Functions

Azure IoT Edge Transparent Gateway 透明网关-效果演示demo

本系列文章:  (1)Azure IoT Edge Transparent Gateway 概念 (2)Azure IoT Edge Transparent Gateway 准备测试用数字证书 (3)Azure IoT Edge Transparent Gateway D2C 演示demo     本文演示: 配置了透明网关的Downstream Device 透过 顶层Edge设备发送遥测消息。 本文的网络结构参考下图: 在Azure上新建了一台Ubuntu Server 并配置为 Edge Device;     配置过程主要有: 在Azure 上建立了一台Windows 10 并配置为Downstream Device; 配置Downstream Device Wind10的 NSG,禁用 internet 出站流量; 配置Downstream Device 和Edge …

Azure IOT Video IoT Hub IoT Edge

Azure IoT Edge Transparent Gateway 透明网关-测试CA证书准备

本系列文章:  (1)Azure IoT Edge Transparent Gateway 概念 (2)Azure IoT Edge Transparent Gateway 准备测试用数字证书 (3)Azure IoT Edge Transparent Gateway D2C 演示demo       本文介绍: Azure IoT Edge Transparent Gateway 透明网关模式下,如何配置测试用的数字证书; 主要用到如下三个证书相关文件: 可参照官网链接生成文件:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-create-test-certificates?view=iotedge-2020-11&WT.mc_id=AZ-MVP-5003757 具体的生成步骤,可参照文档或者视频自行操作: 根 CA 证书 …

Azure IOT Video IoT Hub IoT Edge

Azure IoT Edge Transparent Gateway 透明网关概念

本系列文章:  (1)Azure IoT Edge Transparent Gateway 概念 (2)Azure IoT Edge Transparent Gateway 准备测试用数字证书 (3)Azure IoT Edge Transparent Gateway D2C 演示demo   本文介绍 Azure IoT Edge Transparent Gateway 透明网关模式: 主要参考如下官网链接: 配置透明网关:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-create-transparent-gateway?view=iotedge-2020-11&WT.mc_id=AZ-MVP-5003757 对下游设备进行身份验证:https://docs.microsoft.com/zh-cn/azure/iot- …

Azure IOT Video IoT Hub IoT Edge