All Posts in 2020.11



Azure IoT Edge入门(11)IoT Edge设备上的函数计算Function,使用Function写数据库-Using Azure Function On Edge device save data to Azure SQL Edge

本文介绍: 在IoT Edge边缘设备中部署Azure Function; 通过Azure Function或者其他Module 将遥测数据写入SQL Edge 数据库中; 本地边缘设备上的Function 附加调试; 本文代码:https://github.com/sean8544/azure-iot-edge-quickstart/tree/main/demo09 视频: 图文: 在IoT Edge边缘设备中部署Azure Function; 在部署文件上右键选择 Add iot edge module: 选择Azure Functions: 填写ACR地址: FunctionModule创建完成: 删除上一讲中创建的FirstModule和修改路由: "$edgeHub": { " …

IOT Video Functions IoT Edge Azure SQL SQL Edge

Azure IoT Edge入门(10)远程在IoT Edge设备上部署SQL数据库-Deploy Azure SQL Edge to Azure IoT Edge

本文介绍: 远程在IoT Edge设备上部署 Azure SQL Edge的几种方法; 连接到Azure SQL Edge的方法(Edge设备物理机 / Edge设备Module容器内); Azure Data Studio连接到Azure SQL Edge; 视频: 重点图文: 远程在IoT Edge设备上部署 Azure SQL Edge的几种方法; 方法1.在Azure Portal上的IoT edge设备上添加市场 模块: 进入IoT Hub 选中要部署SQL EDGE的iot edge设备: 点击 模块设置: 点击添加 市场模块: 在市场中选择SQL Server Module: 方法2.在Azure Portal上的Marketplace中选择Azure SQL Edge,然后选择待部署到的 …

Azure IOT Video IoT Edge Azure SQL SQL Edge

Azure IoT Edge入门(9)云到边缘设备控制-Azure iot edge module direct method

本文介绍: 1. Azure IoT edge 从云到边缘设备的控制方式之一 direct method。 2. Edge-agent中内置的 direct method 本文参考:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-edgeagent-direct-method 视频: 图文: 我们之前介绍过Azure IoT Hub 的云到设备控制的方法之一是direct method,参见《云到设备的控制-direct method》。 与此类似,Azure IoT Edge Module中也支持direct method,可以实现对在线module的控制及数据传输(通过payload)。 同时,Azure IoT Edge的系统Module之一的Edge-agent中也内置了几个 …

Azure IOT Video IoT Edge

Azure IoT Edge入门(8)边缘设备到云的消息 及 在本地开发调试 debug Edge Module

本文介绍: 1. 利用Module Client 发送Module 到云的消息; 2. 如何在本地VS code中调试 Azure IoT Edge Module; 3. 使用路由 在多个模块之间控制消息流向; 本文代码请参考github:https://github.com/sean8544/azure-iot-edge-quickstart/tree/main/demo08 本文参考: 开发调试 edge module:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-vs-code-develop-module edge hub dev tool:https://github.com/Azure/iotedgehubdev 视频: 图文: Azure IoT …

Azure IOT Video IoT Edge

Azure VM Guest host update- Azure 虚拟机安全更新

本文介绍Azure 虚拟机安全更新,同时适用于Windows 和Linux 操作系统。 本文参照:https://docs.microsoft.com/zh-cn/azure/automation/update-management/overview 视频介绍: 图文介绍: 单台虚拟机设置安全更新: 在虚拟机左侧菜单中选择 来宾和主机更新,点击转到更新管理。 按照提示选择或创建新的 log analytics 工作区和automation account即可。 多台虚拟机设置安全更新: 多台虚拟机统一管理的思路与单台一致,大体逻辑如下: 创建log analytics 工作区; 创建 automation account; 在automation account中设置 更新用的 log analytics 工作区; 在 …

Azure Video Cloud VM Security Update

Azure front door- 强制http redirect to https

本文属于Azure front door系列文章: 《Azure front door入门案例(1)-将流量路由到离用户最近(时延最低)的后端》 《Azure front door入门案例(2)-配置自定义域名》 本文介绍: Azure front door 的入门配置案例:为azure front door 强制修改http 跳转到https 上一篇中我们介绍了 为front door 配置了自定义域名 www.shawndemo.net , 配置完成后,可以使用 http://www.shawndemo.net 访问 网站,但是使用https://www.shawndemo.net 则会出现如下图不安全提示,此提示是因为 我们尚未给front door 的 自定义域名配置https。 视频演示: 图文演示: 1. 在 …

Azure Video Cloud Network Front Door

using azure bot framework composer design a get weather bot

本文介绍通过机器人框架设计器 (Bot framework composer)接近拖拉拽的方式设计一个聊天机器人,该聊天机器人的主要功能是发起http请求查询天气。当然,稍微变通下,可以用来查询几乎任何你想查询的内容,比如是否有新的日程,比如查询订单系统等等。 本文参照文档:https://docs.microsoft.com/zh-cn/composer/introduction 本文使用了一个模拟的天气查询api,该api提供北上广深的天气查询,其余城市返回404,具体见下图: 我们准备了一个测试用的API地址: http://get-weather-api.azurewebsites.net/api/GetWeatherByCityName?name=shanghai2 注意,如果测试API不可用,可以下载源码并自行部署:https://github.com/sean8 …

Azure AI Cloud Bot Framework Bot Service