上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 51 下一页
摘要: 问题描述 使用Azure Spring Cloud服务,在部署时候失败,收到错误消息为: c:\project\hellospring>az spring-cloud app deploy -g dev -s testdemo -n demo -p ./hellospring-0.0.1-SNAPS 阅读全文
posted @ 2021-05-28 13:35 路边两盏灯 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用Azure App Service,也可以部署一个Java程序作为Web Job运行。运行一个 .Jar 文件只需要以下4步: 1)把Java应用打包成一个 .jar 文件 2)创建一个 run.bat文件,并在文件中设置PATH 和 java -jar运行命令,内容如下: set P 阅读全文
posted @ 2021-05-26 20:26 路边两盏灯 阅读(95) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure云服务(Cloud Service)创建Alert(Classic)时候遇见失败消息:“Failed to update alert testclassicalertrule01. The provided location 'chinanorth2' is not avail 阅读全文
posted @ 2021-05-25 16:23 路边两盏灯 阅读(194) 评论(0) 推荐(3) 编辑
摘要: Hybrid Connection (混合连接) 在两个联网应用程序之间启用了双向、请求-响应和二进制流通信以及简单的数据报流。通过混合连接,可以实现应用部署在公网环境中,而数据库保存在本地私网环境中,他们之间通过(HCM: 混合连接器)实现双向通信。 工作原理 混合连接要求将中继代理部署到可以同时 阅读全文
posted @ 2021-05-24 20:15 路边两盏灯 阅读(133) 评论(0) 推荐(1) 编辑
摘要: 问题描述 为优化Redis访问链路,对下面三种方案进行对比: 1、Redis添加到虚拟网络 2、Redis添加专用终结点 3、Redis默认公共链路 问题分析 第三种:Redis默认公共链路,顾名思义,就是公网可访问,这是最基本的访问方式。如要考虑性能或安全性,可以通过SSL(6380), Non- 阅读全文
posted @ 2021-05-21 21:05 路边两盏灯 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 要使用PowerShell操作Azure的表存储,需要经过以下步骤: 1:必须安装 Az 和 AzTable 模块。安装命令为: #安装 Az 模块 Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force #安装 阅读全文
posted @ 2021-05-20 21:53 路边两盏灯 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在使用安全检测工具对Azure Redis服务端口进行扫描时,发现Redis对外开放了13001, 13000,15000,15001端口。非常不理解的是,在门户上只开放了6379,6380这两个端口。那是为什么导致 1300N 和 1500N 端口会是开放的呢?并且是对公网开放? 通过  阅读全文
posted @ 2021-05-19 20:50 路边两盏灯 阅读(627) 评论(0) 推荐(2) 编辑
摘要: Your organization has decided to modernize its web application and move it to Azure. They currently host the website on-premises, which connects to both Oracle Database and SQL Server on-premises. As a developer or architect, you have been tasked to do a proof of concept to ensure the website works on Azure, and to discover what is needed to successfully modernize the website to utilize cloud capabilities. 阅读全文
posted @ 2021-05-19 18:45 路边两盏灯 阅读(350) 评论(0) 推荐(0) 编辑
摘要: Azure, 在2008年10月的Microsoft专业开发人员大会(PDC)上宣布,当时使用内部项目代号“Project Red Dog”,并于2010年2月正式发布为Windows Azure,然后在 2014年3月25日更名为Microsoft Azure Azure, announced at Microsoft's Professional Developers Conference (PDC) in October 2008, went by the internal project codename "Project Red Dog", and formally released in February 2010, as Windows Azure before being renamed to Microsoft Azure ... 阅读全文
posted @ 2021-05-18 20:43 路边两盏灯 阅读(206) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在先前的一篇博文中,介绍了如何使用Microsoft Graph API来创建Azure AD用户(博文参考:【Azure Developer】使用Microsoft Graph API 如何批量创建用户,用户属性中需要包含自定义字段(如:Store_code,Store_name等),但 阅读全文
posted @ 2021-05-16 15:38 路边两盏灯 阅读(750) 评论(1) 推荐(0) 编辑
摘要: 在Azure中,可以通过App Service快速部署,构建自定义站点(PaaS服务)。默认情况下,这些站点被访问URL都是面向公网,通过公网进行解析。为了最好的安全保障,是否可以有一种功能实现只能内网访问呢?并且为了在企业内部使用,还需要配置私有的自定义域名(如myapp.aaa)? 说明:虽然App Service提供了可以集成虚拟网络(内网),但是这样的集成是指作为App Service服务器实例可以访问到虚拟网络VNET 中的资源(如SQL Service,内网API等),而App Service自身的访问还是通过公网URL访问。所以它并不能实现内网访问App Service目的 阅读全文
posted @ 2021-05-14 21:05 路边两盏灯 阅读(798) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure Function中创建一个PowerShell的函数后,其中使用了Get-AzMaintenanceUpdate,New-AzApplyUpdate 等指令,但是在执行时错误。错误截图: 问题分析及解决 第一步:分析错误日志 在错误截图中,可以清晰的发现问题【ERROR: T 阅读全文
posted @ 2021-05-12 21:00 路边两盏灯 阅读(138) 评论(0) 推荐(1) 编辑
摘要: 问题描述 参考“快速入门:在 Linux 上的 Azure 应用服务中创建 Python 应用” 文档,在App Service For Linux环境中部署Python应用,在添加了pandas,应用本地运行成功,但是部署到App Service后,启动报错:Application Error 问 阅读全文
posted @ 2021-05-11 17:11 路边两盏灯 阅读(140) 评论(0) 推荐(1) 编辑
摘要: 问题描述 当成功创建一个Web App时,通过高级工具(Kudu)可以查看 Web App的根目录(wwwroot)中有一个默认的文件(hostingstart.html)。它就是应用服务的默认页面。如果没有指定default 或者 index等页面或者Web.config中没有配置rewrite规 阅读全文
posted @ 2021-05-10 15:11 路边两盏灯 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure App Service添加自定义域名时,遇见了Domain ownership 验证无法通过的问题? 问题解决 因为DNS中配置App Service默认域名和自定义域名的CNAME记录后,在App Service中需要验证该域名的所有权,所以需要在DNS中在增加一条TXT记 阅读全文
posted @ 2021-05-10 15:08 路边两盏灯 阅读(196) 评论(1) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 51 下一页