随笔分类 -  【Azure 应用服务】

上一页 1 2 3 4 5 6 7 ··· 15 下一页
Azure 中使用App Service的各种疑难杂症
摘要:问题描述 在App Service中启用了HTTP 2.0后,如何来验证它可以正常接受HTTP 2.0的请求呢? 问题解答 如果直接使用浏览器访问,无法直接判断出来是否使用 HTTP 2.0,所以本文中使用.NET Console代码来测试HTTP 2.0. 第一步:打开Visual Studio 阅读全文
posted @ 2024-04-08 20:39 路边两盏灯 阅读(24) 评论(0) 推荐(0) 编辑
摘要:It does this by draining instances of their current function executions and then removes those instances. This behavior is logged as drain mode. 阅读全文
posted @ 2024-04-02 20:03 路边两盏灯 阅读(5) 评论(0) 推荐(0) 编辑
摘要:问题描述 在Function App中配置了无代码模式的Application Insights,但有时候发现,超过1MB的文件上传/下载操作成功。但是在Application Insights中,却没有发现请求日志?这是一种什么情况呢? 问题解答 Application Insights 是具有采 阅读全文
posted @ 2024-04-01 20:31 路边两盏灯 阅读(23) 评论(0) 推荐(0) 编辑
摘要:Azure App Service .NET Profiler 在App Service服务中,如果部署了.NET应用,平台有一个非常好的工具可以查看请求的性能分布及异常时的Stack Traces。 进入路径: App Service Azure Overview --> Networking(网 阅读全文
posted @ 2024-03-18 20:36 路边两盏灯 阅读(20) 评论(0) 推荐(0) 编辑
摘要:问题描述 在Azure Function中,使用如下代码读取Blob内容: try { // Retrieve the file from Azure Blob Storage BlobServiceClient bsclient = new BlobServiceClient(new Uri($" 阅读全文
posted @ 2024-03-04 19:30 路边两盏灯 阅读(16) 评论(0) 推荐(0) 编辑
摘要:问题描述 在中国区的微软云服务上,使用逻辑应用是否可以下载SharePoint上的文件呢? 目前遇见的问题时,选择Logic App的SharePoint组件,登录SharePoint账号时,只能选择中国区的登录账号,不能使用Global Sharepoint账号。 问题解答 Azure China 阅读全文
posted @ 2024-03-01 20:24 路边两盏灯 阅读(39) 评论(0) 推荐(0) 编辑
摘要:文章原文:https://techcommunity.microsoft.com/t5/azure-integration-services-blog/scaling-logic-app-standard-for-high-throughput-scenarios/ba-p/3866731 Scal 阅读全文
posted @ 2024-02-28 20:27 路边两盏灯 阅读(48) 评论(0) 推荐(1) 编辑
摘要:问题描述 参考官方文档(使用 Python 创建你的第一个持久函数:https://learn.microsoft.com/zh-cn/azure/azure-functions/durable/quickstart-python-vscode), 部署后,却出现“Failed to load fu 阅读全文
posted @ 2024-02-22 20:07 路边两盏灯 阅读(58) 评论(0) 推荐(0) 编辑
摘要:问题描述 在VS Code中,创建好Function App后部署到Azure中,无法选择Subscriptions 问题解答 对于无法使用 VS Code 部署 Function App 到 Azure,最近有一个更新, 导致了Azure Resource 插件的 v0.8.0 版本不支持中国区登 阅读全文
posted @ 2024-02-19 19:47 路边两盏灯 阅读(22) 评论(0) 推荐(0) 编辑
摘要:问题描述 运行在App Service上的Webjob连接Azure Redis出现Timeout Exception。 错误截图: 参考Azure Redis对于超时问题的排查建议, 在修改Min Thread后,问题依旧。 流量突增和线程池配置 流量激增时,如果 ThreadPool 设置不佳, 阅读全文
posted @ 2024-02-18 20:20 路边两盏灯 阅读(32) 评论(0) 推荐(0) 编辑
摘要:问题描述 使用Azure Function, 环境是Linux的Java8。目前 Oracle Java JDK8,11,17 和 OpenJDK 8/11/17 都在存在漏洞受影响版本的范围内。 OpenJDK CVE numbers: CVE‑2023‑21954 CVE‑2023‑21938 阅读全文
posted @ 2024-02-10 18:30 路边两盏灯 阅读(23) 评论(0) 推荐(0) 编辑
摘要:问题描述 在本地调试Azure Function时,遇见了跨域问题: Access to XMLHttpRequest at 'http://localhost:7071/api/HttpTriggerToken?tenantId=b7f6f99f-3045-412a-8828-b304407085 阅读全文
posted @ 2024-02-01 21:01 路边两盏灯 阅读(86) 评论(0) 推荐(0) 编辑
摘要:Microsoft.Azure.WebJobs.Host.FunctionTimeoutException /Timeout value of 00:30:00 was exceeded by function /Functions.TimerTrigger_UdeskContact async Microsoft.Azure.WebJobs.Host.Executors.FunctionExecutor.TryHandleTimeoutAsync(Task invokeTask,CancellationToken shutdownToken,Boolean throwOnTimeout,CancellationToken timeoutToken,TimeSpan timeoutInterval,IFunctionInstance instance,Action onTimeout) 阅读全文
posted @ 2024-01-17 22:28 路边两盏灯 阅读(66) 评论(0) 推荐(0) 编辑
摘要:问题描述 当应用部署到微软云 Azure后,如果遇见本地访问Azure App Service应用慢或者是调用第三方接口慢的时候,有什么好的调试方法呢? 来判断具体时那一段请求耗时呢? 问题解答 当然浏览器本身的开发者工具(F12)就是一种非常好的工具。 当时,当安装浏览器不方便时,curl 就是一 阅读全文
posted @ 2024-01-15 21:56 路边两盏灯 阅读(45) 评论(0) 推荐(0) 编辑
摘要:【Azure App Service】如何来停止 App Service 的高级工具站点 Kudu ?SCM_DO_BUILD_DURING_DEPLOYMENT=false 阅读全文
posted @ 2024-01-10 21:57 路边两盏灯 阅读(40) 评论(0) 推荐(0) 编辑
摘要:问题描述 在App Service 中选择了Java Tomcat后,如何查看Azure App Service的Tomcat的配置信息呢? 问题解答 可以通过以下的 3个步骤查看: 第一步:登录 Kudu : 方式一:在当前 Web 应用的 URL 中加入 .scm (插入位置在 site 名与 阅读全文
posted @ 2023-12-27 20:07 路边两盏灯 阅读(28) 评论(0) 推荐(0) 编辑
摘要:问题描述 当在App Service for Windows环境中所列出的Tomcat Version 没有所需要的情况下,如何实现自定义Tomcat 环境呢? 问题解答 第一步: 从官网下载要使用的 tomcat 版本,解压到本地目录 第二步:修改 conf/server.xml 配置文件 将 p 阅读全文
posted @ 2023-12-25 21:50 路边两盏灯 阅读(18) 评论(0) 推荐(0) 编辑
摘要:Starting Host (HostId=funapp-xxx-dev, Version=1.0.20776.0, InstanceId=xxx-x-xx-x-xxx, ProcessId=7924, AppDomainId=2, Debug=True, ConsecutiveErrors=0, StartupCount=1, FunctionsExtensionVersion=~1) 阅读全文
posted @ 2023-12-19 20:44 路边两盏灯 阅读(73) 评论(0) 推荐(0) 编辑
摘要:问题描述 App Serive上的应用配置了系统标识(System Identity),通过系统标识获取到访问Key Vault资源的Access Token。但这次确遇见了无法获取到正常的Access Token。 验证问题 1:查看App Service的门户中是否启用了系统标识 2:进入App 阅读全文
posted @ 2023-12-18 21:15 路边两盏灯 阅读(28) 评论(0) 推荐(0) 编辑
摘要:问题描述 操作不当,误删除了App Service的资源,怎么办? 问题解答 根据Azure 官方文档,可以使用 Powershell 命令恢复到原始 App Service 应用名称。 操作步骤 第一步:列出已删除的应用 Get-AzDeletedWebApp Get-AzDeletedWebAp 阅读全文
posted @ 2023-12-12 20:17 路边两盏灯 阅读(41) 评论(0) 推荐(1) 编辑

上一页 1 2 3 4 5 6 7 ··· 15 下一页
点击右上角即可分享
微信分享提示