上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 51 下一页
摘要: 问题描述 使用Service Bus,发现消息被重复消费。如果要查看某一条消息的具体消费情况,需要那些消息的属性呢? 问题解答 使用Azure Service Bus,当消费发送到服务端后,就会生产相关属性,如Partition Key,Message ID,Enqueued Time, Seque 阅读全文
posted @ 2022-12-04 21:35 路边两盏灯 阅读(77) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure的存储服务中,介绍灾备恢复和Storage Account故障转移的文档中,有一句话“Account failover is not supported for storage accounts with a hierarchical namespace enabled.” 而 阅读全文
posted @ 2022-11-29 20:14 路边两盏灯 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 问题描述 App Service中,如何通过 Application Setting 来配置 Key Vault中的值呢? 问题解答 首先,App Service服务可以直接通过引用的方式,无需代码的情况下,为Application Setting中的Key配置Key Vault中保存的值。参考官方 阅读全文
posted @ 2022-11-28 17:57 路边两盏灯 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 问题描述 多设备并发往 Azure Storage Blob 的 Container 存数据是否可以? 问题解答 可以! Azure Storage 是支持的并发存储数据的,Blob 可以使用乐观并发或悲观并发模型的,具体实现可以参考文档:https://docs.microsoft.com/zh- 阅读全文
posted @ 2022-11-27 17:56 路边两盏灯 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Service Fabric 托管群集, 使用Key Vault中证书,把证书导入到本地安装后,使用该证书的 Thumbprint 作为指令 Connect-ServiceFabricCluster 的 ServerCertThumbprint 和FindValue 的值。结果连接失败,错 阅读全文
posted @ 2022-11-25 17:23 路边两盏灯 阅读(25) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在升级Java Azure Blob Storage SDK的过程中,先后遇见了 UnsatisfiedDependencyException 和 UnexpectedLengthException. 错误一:Org.springframework.beans.factory Unsati 阅读全文
posted @ 2022-11-24 20:45 路边两盏灯 阅读(97) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure Redis服务中,如何实现只允许Azure App Service访问呢? 问题解答 Azure Redis 开启 防火墙的功能,并在防火墙中添加上App Service的出口IP地址即可。两步即可实现此目的! 1)查询 App Service 的出口IP地址 2)添加第1步 阅读全文
posted @ 2022-11-23 19:21 路边两盏灯 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure Function中,执行Powershell的Function脚本时,先后出现 1:[Error] ERROR: The term 'Connect-AzAccount' is not recognized as a name of a cmdlet, function, s 阅读全文
posted @ 2022-11-21 20:30 路边两盏灯 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 问题描述 将pfx证书导入Key Vault的证书时,这个PFX需要输入正确的密码导入成功。但是当需要导出时,生成的pfx证书则不需要密码。这是正常的情况吗? 问题解答 是的,这是Azure Key Vault 证书导入/导出 功能的设计使然。当一个PFX不需要密码的时候,也可以直接导入到Azure 阅读全文
posted @ 2022-11-18 19:54 路边两盏灯 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 问题描述 当 Azure Web App 进行安全扫描后,发现依旧支持很多弱TLS加密套件(Weak TLS Ciphers Suite),那么是否有办法来关闭这些弱的加密套件呢? 在Windows IIS环境中,可以通过修改注册表修改 For Microsoft IIS, you should m 阅读全文
posted @ 2022-11-17 20:12 路边两盏灯 阅读(164) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure Cloud Service的实例中,收集到各种 Error Event 内容,本文针对所收集的三种Event进行解析。 1: This operation is not supported on this filesystem. (0x89000020) <Event xml 阅读全文
posted @ 2022-11-16 20:23 路边两盏灯 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 问题描述 因为一些特殊原因,Event Hub 里面堆积了很多不需要的数据事件,正常要等事件中的过期时间到后才有Event Hub自动删除掉,但希望能够尽快马上删除,有没有什么手动的方法吗? 问题解答 Event Hub是一个数据事件处理服务,最主要的功能就是:接收和发送事件。它并不是一个数据存储服 阅读全文
posted @ 2022-11-15 20:03 路边两盏灯 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用 Azure Service Bus,提供应用程序之间松耦合的消息交换,但是有时候发送消息多次出现超时错误。 A connection attempt failed because the connected party did not properly respond after a 阅读全文
posted @ 2022-11-14 19:37 路边两盏灯 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Azure Redis 出现连接失败,过一会儿后,又能自动恢复。 问题解答 其实,因为Azure Redis服务一直都有升级维护的操作(平均每月一次),Redis服务更新是平台自动进行的计划内的维护升级行为,一般客户端都有重试机制,是不会影响应用。 故障转移发生的情况有: 系统更新,例如 阅读全文
posted @ 2022-11-13 21:52 路边两盏灯 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在使用Azure Event Hub的SDK时候,常规情况下,发现示例代码中并没有SDK内部的日志输出。因为在Java项目中,没有添加 SLF4J 依赖,已致于在启动时候有如下提示: SLF4J: Failed to load class "org.slf4j.impl.StaticLog 阅读全文
posted @ 2022-11-12 16:39 路边两盏灯 阅读(273) 评论(1) 推荐(1) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 51 下一页