摘要: 问题描述 在Azure门户(Create new user - Microsoft Azure 由世纪互联运营)中添加新用户,如果想通过代码来实现,有没有示例代码参考呢? 问题解答 示例代码 from azure.identity import AzureAuthorityHosts from az 阅读全文
posted @ 2024-12-03 20:26 路边两盏灯 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ADLS "This request is not authorized to perform this operation using this permission" 403 阅读全文
posted @ 2024-12-02 20:44 路边两盏灯 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用Azure bicep对多个ServicePrinciple 进行role assignment分配 步骤如下 第一步:定义传参,里面包括object ID和role的一个map如: param servicePrincipals array = [ { objectId: 'serv 阅读全文
posted @ 2024-11-26 22:16 路边两盏灯 阅读(9) 评论(0) 推荐(0) 编辑
摘要: “'IDX10503: Signature validation failed. Keys tried: 'Microsoft.IdentityModel.Tokens.X509SecurityKey , KeyId: xxxxxxxxxxxxxxxxxxx” 阅读全文
posted @ 2024-11-25 20:02 路边两盏灯 阅读(7) 评论(0) 推荐(0) 编辑
摘要: An TLS 1.2 connection request was received from a remote client application, but non of the cipher suites supported by the client application are supported by the server. The connection request has failed. 从远程客户端应用程序收到 TLS 1.2 连接请求,但服务器不支持客户端应用程序支持的任何密码套件。连接请求失败。 阅读全文
posted @ 2024-11-24 11:58 路边两盏灯 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 通常,在生产环境中,为了保证系统环境的安全和纯粹,是不建议安装其它软件或排查工具(如果可以安装,也是需要走审批流程)。 本文将介绍一种,不用安装Wireshark / tcpdump 等工具,使用Windows系统自带的 netsh trace 命令来获取网络包的步骤: 阅读全文
posted @ 2024-11-23 10:17 路边两盏灯 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 查看Redis状态,没有任何异常,服务没有更新,Service Load, CPU, Memory, Connect等指标均正常。在排除Redis端问题后,转向了AKS中。 开始调查AKS的网络状态。最终发现每次Redis客户端出现超时问题时,几乎都对应了AKS NAT Gateway的更新事件,而Redis服务端没有任何异常。因此,超时问题很可能是由于NAT Gateway更新事件导致TCP连接被重置。 阅读全文
posted @ 2024-11-22 21:24 路边两盏灯 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 问题描述 通过FTP的方式,把本地能正常运行的Python Function文件上传到云上后,无法加载函数列表问题。 1:上传 function_app.py,requirements.txt文件到 wwwroot 目录中 2:在Azure Function App的Overview页面,无法显示函 阅读全文
posted @ 2024-11-21 21:10 路边两盏灯 阅读(71) 评论(0) 推荐(0) 编辑
摘要: terminationGracePeriodSeconds : 这个参数的定义是从pod收到terminated signal到最终shutdown的最大时间,这段时间是给pod中的application 缓冲时间用来处理链接关闭,应用清理缓存的;并不是从idel 到 pod被shutdown之间的时间;且是最大时间,意味着如果application 已经gracefully shutdown,POD可能被提前terminated. 阅读全文
posted @ 2024-11-18 20:52 路边两盏灯 阅读(15) 评论(1) 推荐(0) 编辑
摘要: 对于Redis的Server Load指标,每秒创建连接数的并发值,是否有建议呢? 【答】:为了避免将缓存推到 100% 服务器负载,建议将连接创建速率保持在每秒 30 个以下。 阅读全文
posted @ 2024-11-17 20:14 路边两盏灯 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 问题描述 部署.NET 应用到App Service中,应用中调用Storage Account的SDK上传文件到Blob中。只是比较高频率在UploadAsync方法中遇见:OutOfMemoryException 异常信息 ERROR Microsoft.AspNetCore.Server.Ke 阅读全文
posted @ 2024-11-16 11:32 路边两盏灯 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 问题描述 当 OpenSSH 的版本低于 9.8p1,有漏洞风险: A security regression (CVE-2006-5051) was discovered in OpenSSH's server (sshd). There is a race condition which can 阅读全文
posted @ 2024-11-15 19:23 路边两盏灯 阅读(6) 评论(0) 推荐(1) 编辑
摘要: 问题描述 .Net应用程序部署在App Service for Windows环境中,已经根据需求把Platform的位数由32 bit 修改位 64 bit。 但是应用程序在运行一段时间后,一直抛出Out Of Memory异常。 System.OutOfMemoryException: at S 阅读全文
posted @ 2024-11-14 19:58 路边两盏灯 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 根据以上测验,当使用App Service内存没有达到预期的值,且应用异常日志出现OutOfMemory时,就需要检查Platform的设置是否位64bit。 阅读全文
posted @ 2024-11-13 21:19 路边两盏灯 阅读(73) 评论(1) 推荐(0) 编辑
摘要: 问题描述 把NodeJS的ChatBot代码部署到App Service环境中,通过VS Code直接部署,显示部署成功。但是通过URL访问时候,却是 :( Application Error 。 问题解答 App Service遇见Application Error,第一步,查看日志。 发现启动时 阅读全文
posted @ 2024-11-12 21:24 路边两盏灯 阅读(4) 评论(1) 推荐(0) 编辑