随笔分类 -  【Azure Developer】

上一页 1 2 3 4 5 6 7 ··· 9 下一页
Azure 环境中使用 .Net/.Net Core/ Java/ Python/ PHP/ NodeJS /语言开发中的一些代码记录
摘要:根据以上测验,当使用App Service内存没有达到预期的值,且应用异常日志出现OutOfMemory时,就需要检查Platform的设置是否位64bit。 阅读全文
posted @ 2024-11-13 21:19 路边两盏灯 阅读(110) 评论(1) 推荐(0)
摘要:问题描述 把NodeJS的ChatBot代码部署到App Service环境中,通过VS Code直接部署,显示部署成功。但是通过URL访问时候,却是 :( Application Error 。 问题解答 App Service遇见Application Error,第一步,查看日志。 发现启动时 阅读全文
posted @ 2024-11-12 21:24 路边两盏灯 阅读(60) 评论(1) 推荐(0)
摘要:Error: Cannot find module 'node:crypto' 阅读全文
posted @ 2024-11-11 20:04 路边两盏灯 阅读(80) 评论(0) 推荐(0)
摘要:System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80040154 Class not registered (0x80040154 (REGDB_E_CLASSNOTREG)). 阅读全文
posted @ 2024-11-05 20:15 路边两盏灯 阅读(199) 评论(2) 推荐(0)
摘要:问题描述 在VS Code中创建的Java Maven项目,在进行项目打包时,遇见 BUILD FAILURE \lbimage> mvn -clean package [INFO] Scanning for projects... [INFO] [INFO] < org.yourcompany.y 阅读全文
posted @ 2024-11-01 19:42 路边两盏灯 阅读(87) 评论(2) 推荐(0)
摘要:问题描述 使用Python编写了ChatBot,在部署到App Service,却无法启动。 通过高级工具(Kudu站点:https://<your site name>.scm.chinacloudsites.cn/newui)查看日志显示:Failed to find attribute 'ap 阅读全文
posted @ 2024-10-29 20:37 路边两盏灯 阅读(202) 评论(0) 推荐(0)
摘要:问题描述 本地使用Python 编写的Function App,发布到Azure Function后,出现 _cffi_backend module 无法找到的报错。 ERROR: Error: No module named '_cffi_backend', Cannot find module. 阅读全文
posted @ 2024-10-24 20:07 路边两盏灯 阅读(212) 评论(0) 推荐(0)
摘要:const logsQueryClient = new LogsQueryClient(credential , { endpoint: "https://api.loganalytics.azure.cn/v1" ,audience: "https://api.loganalytics.azure.cn", }); 阅读全文
posted @ 2024-10-23 19:34 路边两盏灯 阅读(44) 评论(0) 推荐(0)
摘要:System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel. 阅读全文
posted @ 2024-10-22 19:40 路边两盏灯 阅读(142) 评论(0) 推荐(0)
摘要:问题描述 com.azure:azure-identity jar包版本从1.2.0 升级到1.12.2 版本之后报错,错误信息如下: An attempt was made to call a method that does not exist. The attempt was made fro 阅读全文
posted @ 2024-10-15 20:17 路边两盏灯 阅读(57) 评论(0) 推荐(0)
摘要:问题描述 当根据Cloud Service (Extended Support) 文档更新证书 ( https://docs.azure.cn/zh-cn/cloud-services-extended-support/certificates-and-key-vault )时,如果遇见旧的证书(如 阅读全文
posted @ 2024-10-12 20:19 路边两盏灯 阅读(105) 评论(0) 推荐(0)
摘要:问题描述 在Azure Entra ID中,需要导出一个Application 下的用户信息, 包含User的创建时间。 问题解答 可以使用PowerShell 脚本来实现, 只需要执行如下脚本: Connect-AzureAD -AzureEnvironmentName AzureChinaClo 阅读全文
posted @ 2024-10-09 21:47 路边两盏灯 阅读(80) 评论(0) 推荐(0)
摘要:问题描述 需要通过Python SDK获取Azure服务的一些通知信息,如:K8S版本需要更新到指定的版本,Azure服务的维护通知,服务处于不健康状态时的通知,及相关的操作建议等内容。 问题解答 Azure Resource Health 是 Azure 提供的一项服务,旨在帮助用户了解其资源的健 阅读全文
posted @ 2024-09-16 21:30 路边两盏灯 阅读(37) 评论(0) 推荐(0)
摘要:AI Code 时代早已开启,自己才行动。上手一试,让人惊叹。借助这感叹的情绪,把今天操作Cursor的步骤记录下来,也分享给大家。 推荐大家上手一试,让你改变! 准备阶段 下载 Cursor(https://www.cursor.com/),点击右上角“Download”下载exe安装文件。 安装 阅读全文
posted @ 2024-09-07 17:36 路边两盏灯 阅读(823) 评论(0) 推荐(1)
摘要:问题描述 是否可以在Azure上,一次性把当前账号所有能查看的资源都导出来呢?包含资源名称,类型,定价层SKU信息呢? 问题解答 是的,通过Azure Resource Graph Explorer服务可以实现。 Azure Resource Graph Explorer 是一个强大的工具,旨在提供 阅读全文
posted @ 2024-08-27 20:40 路边两盏灯 阅读(61) 评论(0) 推荐(0)
摘要:问题描述 使用Logic App服务,创建Event Hub触发的Workflow。 根据以下信息配置Event Hub连接器的Active Directory OAuth认证方式: Authentication Type 选择“Active Directory OAuth” Fully Quali 阅读全文
posted @ 2024-08-17 17:32 路边两盏灯 阅读(49) 评论(1) 推荐(0)
摘要:Azure 容器实例(Azure Container Instances,简称 ACI)是一个无服务器容器解决方案,允许用户在 Azure 云环境中运行 Docker 容器,而无需设置虚拟机、集群或编排器。ACI 适用于任何可以在隔离容器中操作的场景,包括事件驱动的应用程序、从容器开发管道快速部署、数据处理和生成作业。 阅读全文
posted @ 2024-08-13 20:55 路边两盏灯 阅读(102) 评论(0) 推荐(1)
摘要:问题描述 在查看.NET代码的时候,发现一个静态方法,第一个参数使用 this 关键字,它在这里是什么作用呢? public static XElement AquireElement(this XContainer container, string name, bool addFirst = f 阅读全文
posted @ 2024-07-16 20:13 路边两盏灯 阅读(36) 评论(0) 推荐(0)
摘要:介绍一个简单的工具,用于将Redis数据从一个redis端点复制到另一个redis端点,基于原始存储库转换为.NET 8:https://github.com/LuBu0505/redis-copy-net8 阅读全文
posted @ 2024-07-11 20:20 路边两盏灯 阅读(339) 评论(1) 推荐(2)
摘要:REST API: write EPROTO 8936192:error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER:..\..\third_party\boringssl\src\ssl\tls_record.cc:231. Python: urllib3.exceptions.SSLError: [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1000) 阅读全文
posted @ 2024-07-09 20:02 路边两盏灯 阅读(686) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 ··· 9 下一页