上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 49 下一页
摘要: 问题描述 使用Azure Media Service 制作视频点播服务,在客户端使用 Azure Media Player 播放器在 Edge 浏览器中播放视频时候遇见无法播放的问题: 错误信息: The video playback was aborted due to a corruption 阅读全文
posted @ 2023-06-25 19:41 路边两盏灯 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在PHP应用中,连接Redis的方法报错 RedisException(code: 0): Connection refused at /data/Redis/Connectors/PhpRedisConnector.php production.ERROR: Connection ref 阅读全文
posted @ 2023-06-21 19:45 路边两盏灯 阅读(185) 评论(1) 推荐(0) 编辑
摘要: 问题描述 创建App Service Container服务,选择从Docker Hub中获取appsmith/appsmith-ce 镜像(https://www.appsmith.com/ & https://hub.docker.com/r/appsmith/appsmith-ce/tags 阅读全文
posted @ 2023-06-19 20:29 路边两盏灯 阅读(181) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在VS Code中编写好 Azure Function App代码后,通过 func azure functionapp publish 部署失败,抛出 503 Service Unavailable 错误。 Getting site publishing info... Creating 阅读全文
posted @ 2023-06-14 21:25 路边两盏灯 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure Data Factory (数据工厂)中,调用同在Azure中的Function App函数,却出现403 - Forbidden错误。 截图如下: 问题解答 访问Azure Function App遇见403 - Forbidden错误,这是因为Function App启用 阅读全文
posted @ 2023-06-13 19:32 路边两盏灯 阅读(15) 评论(0) 推荐(0) 编辑
摘要: az login | Decryption failed:[WinError -2146893813] Key not vaid for use in specified state | msal_extensions.persistence: DPAPI error likely caused by file content not previously encrypted. App developer should migrate by calling save(plaintext) first. | Please report to us via Github : https://github.com/Azure/azure-cli/issues/20231 阅读全文
posted @ 2023-06-12 17:34 路边两盏灯 阅读(142) 评论(0) 推荐(1) 编辑
摘要: 问题描述 使用Azure Event Hub服务,除了正常的生产,消费消息以外,如果想拿到Event Hub中存储的历史消息?有什么方法呢? 问题解答 获取 Event Hubs 存储的历史消息,首先需要确保消息进入Event Hub的时间处于保留期限(Retention Days)内,因为超过这个 阅读全文
posted @ 2023-06-08 20:07 路边两盏灯 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在创建Azure App Service时,服务端的配置使用Java 8 + Tomcat 8.5。默认的根目录页面显示出App Service Tomcat版本信息,存在一定的安全隐患。 如何来避免这个问题呢? 问题解答 因为在初始创建App Service时,Azure会根据所选Sta 阅读全文
posted @ 2023-06-07 19:35 路边两盏灯 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 问题描述 创建Azure Kubernetes Service服务后,需要升级AKS集群的 kubernetes version。在AKS页面的 Cluster configuration 页面中,选择新的版本 1.25.5,确认升级。等待50分钟左右,却等到了升级失败的消息: Failed to 阅读全文
posted @ 2023-06-06 19:32 路边两盏灯 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure Kubernetes 服务中,创建一个Internal Load Balancer服务,使用以下yaml内容: internallb.yaml apiVersion: v1 kind: Service metadata: name: ilb-myapp annotations 阅读全文
posted @ 2023-05-31 19:17 路边两盏灯 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 问题描述 哪些客户端 IP 正在向/从Azure Event Hub发送/接收事件?如何来查看Event Hub的生产者端,消费者端的IP地址呢? 问题解答 如果需要查看Event Hub 服务端的日志,可以在Azure门户上开启诊断日志来查看。默认情况下,我们并不能看见Event Hub的生产者, 阅读全文
posted @ 2023-05-29 17:05 路边两盏灯 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Azure Media Service上传的视频资产,如何保证在Transfer编码后音频文件和视频文件不分成两个文件?保持在一个可以直接播放的MP4文件中呢? 问题解答 Azure Media Service上提供的 Build-in Transform 生成的资产中,音频与视频分别存储 阅读全文
posted @ 2023-05-25 20:23 路边两盏灯 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Azure Event Hub支持 kafka,所以为了测试消息生产者所在环境与Azure Event Hub之间发送消息的性能如何,特别使用 kafka 官方测试生产者,消费者的性能工具 : kafka-producer-perf-test.bat kafka-consumer-perf 阅读全文
posted @ 2023-05-23 21:15 路边两盏灯 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在Azure中创建逻辑应用(Logic App),有两种计划类型。一是消费型,另一种是标准型。 在消费型的Logic App Metrics页面中,我们可以看见Workflow的执行成功数指标和失败数指标。如: RunsCancelled 取消的运行数 Count 总计 已取消的工作流运行 阅读全文
posted @ 2023-05-22 20:22 路边两盏灯 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Azure Service Bus 的门户操作页面上,是否可以批量删除其中的Topics呢? 问题解答 Azure Service Bus门户或Service Bus Explorer工具没有提供批量删除Topic的方法。但是可以自己写脚本删除,并且可以在删除的时候自定义过滤条件。 以Py 阅读全文
posted @ 2023-05-17 20:26 路边两盏灯 阅读(21) 评论(0) 推荐(1) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 49 下一页