上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 34 下一页
摘要: 问题描述 在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 编码者卢布 阅读(314) 评论(0) 推荐(2)
摘要: 问题描述 在App Service Linux环境中,如部署Tomcat 应用后,如果访问的页面找不到,应用会返回一个由Azure生成的404页面,那么是否可以修改它呢? PS: 如果是App Service for Windows,可以参考博文 [ App Service for Windows 阅读全文
posted @ 2023-10-18 21:56 编码者卢布 阅读(88) 评论(0) 推荐(0)
摘要: 问题描述 在Logic App中使用 Outlook.com组件发送邮件,遇见了outlook connection报429的错误 {"error":{"code":"ErrorExceededMessageLimit","message":"Cannot send mail. Daily Mess 阅读全文
posted @ 2023-10-17 21:23 编码者卢布 阅读(165) 评论(0) 推荐(0)
摘要: APIM Self-hosted gateway : { "statusCode": 404, "message": "Resource not found" } 阅读全文
posted @ 2023-10-16 19:54 编码者卢布 阅读(95) 评论(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 编码者卢布 阅读(574) 评论(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 编码者卢布 阅读(236) 评论(0) 推荐(1)
摘要: 问题描述 在Azure Databricks上获取Azure Key Vault中所存储的机密(secret)的两种方式? 问题解答 方式一: 在Databricks的Notebook 中,直接编写Python代码读取Key Vault的Secret 实例代码如下: import os from a 阅读全文
posted @ 2023-10-09 19:40 编码者卢布 阅读(715) 评论(0) 推荐(2)
摘要: 问题描述 在Azure Logic App中,使用Transform XML组件进行XML内容的转换,但是最近这个组件运行始终失败。 问题解答 点击Transform XML组件上的错误案例,并不能查看到详细的错误消息。 最后在Azure Logic App的产品团队确认下,发现这是Logic Ap 阅读全文
posted @ 2023-10-08 19:31 编码者卢布 阅读(50) 评论(0) 推荐(1)
摘要: 问题描述 编写Python Function,并且在Function中通过 subprocess 调用powershell.exe 执行 powershell脚本。 import azure.functions as func import logging import subprocess app 阅读全文
posted @ 2023-10-07 20:06 编码者卢布 阅读(570) 评论(0) 推荐(1)
摘要: 问题描述 在中国区Azure上,创建Container App服务,发现默认的应用程序URL只有前半段,并不是一个完整的域名。这是什么情况呢? 正常的Container App的URL格式为:<container app name>.<environment>.<region>.azureconta 阅读全文
posted @ 2023-10-06 16:16 编码者卢布 阅读(179) 评论(0) 推荐(0)
摘要: … The Cloud Service, is not in a virtual network, and thus, it cannot be migrated, it is important to understand that if there is no VNET on the current Cloud Service, it is not possible to migrate it. Being in Mooncake, it might have had an extension on that implementation from 2017, but in short, this machine cannot be migrated, and on top of that, its under the Extra small tier, which is no longer supported for CSES. You will need to redeploy 阅读全文
posted @ 2023-09-27 19:55 编码者卢布 阅读(74) 评论(0) 推荐(0)
摘要: 问题描述 启用App Service Local Git 部署,在Clone 代码库到本地时候,卡在Clone ‘xxxxxx’ ... ... 一动不动的问题? 问题解答 因为Git Clone没有任何日志输出,所以在其他IDE上也尝试Git App Service的代码库。在intellj的gi 阅读全文
posted @ 2023-09-26 20:11 编码者卢布 阅读(70) 评论(0) 推荐(1)
摘要: "message": "You have exceeded the maximum amount of scale changes within the past hour(23 changes and limit is 20). Please retry later." 阅读全文
posted @ 2023-09-25 19:35 编码者卢布 阅读(69) 评论(0) 推荐(0)
摘要: 问题描述 询问批量将存储账户中的表嵌入另一个账户中的办法? 问题解答 方式一:使用 AzCopy 使用Az copy做表格的导入导出,注意您需要使用Azcopy 7.3版本来实现对Table的操作,可以选择导出到Blob中,这样导出的数据不会保存在本地,以及该指定支持并发导出。 从表存储导出数据 : 阅读全文
posted @ 2023-09-21 19:49 编码者卢布 阅读(81) 评论(0) 推荐(0)
摘要: This XML file does not appear to have any style information associated with it. The document tree is shown below. 阅读全文
posted @ 2023-09-19 19:26 编码者卢布 阅读(714) 评论(0) 推荐(1)
摘要: 问题描述 在Azure Batch的介绍文档中,提出了自动池的概念, 它可以在任务完成后,自动删除Pool资源,详细介绍:https://docs.azure.cn/zh-cn/batch/nodes-and-pools#autopools & https://learn.microsoft.com 阅读全文
posted @ 2023-09-18 21:17 编码者卢布 阅读(101) 评论(0) 推荐(1)
摘要: cmd /c "echo %date% %time% & set AZ_BATCH & timeout /t 90 > NUL & timeout /nobreak /t 10 & echo 'what is your name?' & echo %date% %time% & for %I in (1,2,3,4,5,6) do echo '%time%' " 阅读全文
posted @ 2023-09-13 15:39 编码者卢布 阅读(579) 评论(0) 推荐(3)
摘要: 问题描述 Azure Function默认的Timeout时间是否可以调整呢? 问题解答 可以的,根据创建Function的时候选择的定价层不同,Function 默认的Timeout时间也不同。 消耗层的 functionTineout默认是5分钟,最大可修改为10分钟 高级和专用计划的默认值为3 阅读全文
posted @ 2023-09-12 19:37 编码者卢布 阅读(250) 评论(0) 推荐(0)
摘要: 问题描述 使用Redis-cli连接Redis服务,因为工具无法直接支持TLS 6380端口连接,所以需要使用 stunnel 配置TLS/SSL服务。根据文章(Linux VM使用6380端口(SSL方式)连接Azure Redis (redis-cli & stunnel) : https:// 阅读全文
posted @ 2023-09-11 20:13 编码者卢布 阅读(395) 评论(0) 推荐(1)
摘要: 问题描述 在使用APIM提供API服务管理的场景中,遇见了客户端请求时候发送的请求Header中的Content-Type不满足后台服务器的要求,但是在客户端要求客户修改代码难度较高。 所以面对这样的情况,是否在APIM端修改为对请求的Content-Type进行覆写呢? 问题解答 可以的。 API 阅读全文
posted @ 2023-09-07 20:26 编码者卢布 阅读(82) 评论(0) 推荐(0)
摘要: 问题描述 当对AKS的登录方式(认证和授权)从“Local Account with Kubernetes RBAC ”改变为“Azure AD authentication with Azure RBAC”. 通过 kubectl 连接AKS会要求交互式登录,需要通过浏览器输入认证码后关联azur 阅读全文
posted @ 2023-09-06 21:33 编码者卢布 阅读(190) 评论(0) 推荐(1)
摘要: 问题描述 查看Service Bus的Java示例代码,发现使用Spring Cloud Integration,配置 Application.yaml 可以连接到两个Service Bus。 但代码中没有使用Connection String 属性配置服务连接。 那么,是否可以直接在此添加 con 阅读全文
posted @ 2023-09-03 17:14 编码者卢布 阅读(155) 评论(0) 推荐(0)
摘要: 问题一:迁移到云服务扩展后,之前经典版的云服务的部署槽会变成单一的部署槽,关于两个云服务扩展版之间的部署交换能否提供一个演示? 对于具有双槽的云服务(Classic),根据文档中的建议,在迁移到云服务(外延支持)时需要先删除过渡槽,将生产槽作为一个独立的云服务进行迁移。 在完成生产槽的迁移后,创建另 阅读全文
posted @ 2023-08-31 19:54 编码者卢布 阅读(135) 评论(0) 推荐(0)
摘要: 问题描述 使用Azure App Service For Container 拉取 应用镜像,发现拉取失败。 错误消息: “Image pull failed since Inspect image returned null: xxxxxxx.azurecr.cn/dataapi:20230830 阅读全文
posted @ 2023-08-30 20:18 编码者卢布 阅读(175) 评论(0) 推荐(0)
摘要: 问题描述 在App Service For Linux 中,部署NodeJS应用,应用启动失败。 报错信息为: 2023-08-29T11:21:36.329731566Z RangeError: Incorrect locale information provided2023-08-29T11: 阅读全文
posted @ 2023-08-29 19:24 编码者卢布 阅读(217) 评论(0) 推荐(0)
摘要: 问题描述 通过Microsoft Graph的API如何来查看用户信息和登录记录呢? 问题解答 第一步:需要一个授权Token 比如一个拥有查看用户权限的Azure账号,通过Azure CLI 命令获取到一个Access Token az cloud set --name AzureChinaClo 阅读全文
posted @ 2023-08-23 20:54 编码者卢布 阅读(271) 评论(0) 推荐(0)
摘要: @azure/arm-monitor ManagedIdentityCredential authentication failed.(status code 500) CredentialUnavailableError: ERROR: AADSTS500011: The resource principal name https://management.azure.com was not found in tenant name ##############. This can happen if the application has not been installed by the administrator of the tenant or consented to by any user in the tenant. You might have sent your authentication request to the wrong tenant. 阅读全文
posted @ 2023-08-22 19:36 编码者卢布 阅读(70) 评论(0) 推荐(1)
摘要: Exception while executing function: Functions.AzureBlobTrigger ---> Microsoft.Azure.WebJobs.Script.Workers.WorkerProcessExitException : node exited with code -1073740791 (0xC0000409) 阅读全文
posted @ 2023-08-21 20:14 编码者卢布 阅读(151) 评论(0) 推荐(0)
摘要: 问题描述 在App Service for linux上创建一个PHP应用,通过 phpinfo() 查看PHP的扩展设置,发现JIT没有被开启, jit_buffer_size 大小为0. 那么,在App Service的环境中,如何开启JIT呢? 问题解答 PHP 8在PHP的内核中添加了JIT 阅读全文
posted @ 2023-08-17 20:23 编码者卢布 阅读(462) 评论(0) 推荐(0)
摘要: 问题一:Service Fabric 是否支持Private Link? 在Azure Private Endpoint文档中,罗列出了 Azure 上支持 Private Link 的服务。Service Fabric不在其中。 Azure Private Link availability :h 阅读全文
posted @ 2023-08-16 20:18 编码者卢布 阅读(79) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 34 下一页