上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 54 下一页
摘要: 问题描述 是否有直接方法将Azure Key Vault中的机密名称/机密值导出,保存为一个文件呢? 问题解答 Azure Key Vault 没有直接提供Secret 导出文件(如xlsx格式)的方式或者工具。不过可以通过SDK将Secret列举出来并获取到所有的密钥对,保存为所需要的文件格式。在 阅读全文
posted @ 2023-11-07 20:27 路边两盏灯 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在使用Terraform创建Function App 后,部署函数时候遇见 ServiceUnavailable (Bad Request -- Encountered an error (ServiceUnavailable) from host runtime.) 问题。 查看Func 阅读全文
posted @ 2023-11-06 20:39 路边两盏灯 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Azure Web Job执行Powershell脚本报错 Select-AzContext : The term 'Select-AzContext' is not recognized as the name of a cmdlet, function, script file, or 阅读全文
posted @ 2023-11-02 20:58 路边两盏灯 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure Function代码中,有默认的ILogger对象来记录函数的日志,如果函数引用了一些静态对象,是否有办法使用这个默认的ILogger对象来记录日志呢? using System.Net; using Microsoft.Azure.Functions.Worker; usi 阅读全文
posted @ 2023-10-31 20:09 路边两盏灯 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 问题描述 当在Azure中创建了一个函数应用(Function App)后,访问默认URL会得到一个默认的页面。是否有办法修改这个默认页面呢? 问题解答 在之前的博文中,介绍了修改App Service的默认页面。 1:【Azure 应用服务】App Service 默认页面暴露Tomcat版本信息 阅读全文
posted @ 2023-10-30 20:01 路边两盏灯 阅读(31) 评论(0) 推荐(1) 编辑
摘要: 问题描述 消费型逻辑应用(Consumption Logic App)使用触发器模式消费 Azure Service Bus的消息,当Service Bus中存在大量消息等待消费时,Logic App消费速度太慢,并发数无法满足需求。造成消息积压,有什么办法可以优化吗? 问题解答 在Logic Ap 阅读全文
posted @ 2023-10-25 20:40 路边两盏灯 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在App Service中,为App Service配置了访问限制,结果导致在克隆App Service的代码时候,遇见403错误。 问题解答 因为在使用 git clone App Service的应用代码时,使用的URL地址为 https://***.scm.chinacloudsit 阅读全文
posted @ 2023-10-24 20:00 路边两盏灯 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure Logic App的官网介绍中,使用SMTP组件发送邮件非常简单(https://docs.azure.cn/zh-cn/connectors/connectors-create-api-smtp#connect-to-smtp)。 本文通过实际操作,配置SMTP,然后设置E 阅读全文
posted @ 2023-10-23 20:37 路边两盏灯 阅读(142) 评论(0) 推荐(2) 编辑
摘要: 问题描述 在App Service Linux环境中,如部署Tomcat 应用后,如果访问的页面找不到,应用会返回一个由Azure生成的404页面,那么是否可以修改它呢? PS: 如果是App Service for Windows,可以参考博文 [ App Service for Windows 阅读全文
posted @ 2023-10-18 21:56 路边两盏灯 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Logic App中使用 Outlook.com组件发送邮件,遇见了outlook connection报429的错误 {"error":{"code":"ErrorExceededMessageLimit","message":"Cannot send mail. Daily Mess 阅读全文
posted @ 2023-10-17 21:23 路边两盏灯 阅读(41) 评论(0) 推荐(0) 编辑
摘要: APIM Self-hosted gateway : { "statusCode": 404, "message": "Resource not found" } 阅读全文
posted @ 2023-10-16 19:54 路边两盏灯 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在App Service上放置一个JS页面并引用msal.min.js,目的是获取AAD用户名并展示。 问题解答 示例代码 <!DOCTYPE html> <html> <head> <title>Azure Service</title> </head> <script type="te 阅读全文
posted @ 2023-10-11 22:17 路边两盏灯 阅读(260) 评论(2) 推荐(2) 编辑
摘要: 问题描述 示例调用MSGraph SDK通过User principal name获取到User信息,如Object ID。 参考资料 选择 Microsoft Graph 身份验证提供程序 : https://learn.microsoft.com/zh-cn/graph/sdks/choose- 阅读全文
posted @ 2023-10-10 20:11 路边两盏灯 阅读(83) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure Databricks上获取Azure Key Vault中所存储的机密(secret)的两种方式? 问题解答 方式一: 在Databricks的Notebook 中,直接编写Python代码读取Key Vault的Secret 实例代码如下: import os from a 阅读全文
posted @ 2023-10-09 19:40 路边两盏灯 阅读(277) 评论(0) 推荐(2) 编辑
摘要: 问题描述 在Azure Logic App中,使用Transform XML组件进行XML内容的转换,但是最近这个组件运行始终失败。 问题解答 点击Transform XML组件上的错误案例,并不能查看到详细的错误消息。 最后在Azure Logic App的产品团队确认下,发现这是Logic Ap 阅读全文
posted @ 2023-10-08 19:31 路边两盏灯 阅读(9) 评论(0) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 54 下一页