上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 32 下一页
摘要: 问题描述 跨区域无法访问Azure Redis服务, Redis 启用了Network并设置在一个VNET中,现在客户端部署在另一个区域数据中心中,两个数据中心区域使用VNET Peer(对等互连)访问。但是为什么不能访问Redis服务呢? 问题解答 根据Azure Redis的官方介绍,因为Red 阅读全文
posted @ 2023-07-14 21:59 路边两盏灯 阅读(41) 评论(0) 推荐(0)
摘要: 问题描述 客户端使用 Lettuce.io 连接 Azure Redis,出现了长达15分钟的Timeout异常。 问题解答 Azure Redis作为PaaS服务,由于一些平台的升级操作而引发的故障转移(Failover)。 如Redis的客户端时部署在Linux服务器上,则可能导致长达15分钟无 阅读全文
posted @ 2023-07-13 16:12 路边两盏灯 阅读(195) 评论(0) 推荐(0)
摘要: 问题描述 PHP的Web Job,通过artisan来配置路径启动PHP任务,相关启动脚本如下: artisan_path = "d:\\home\\site\\wwwroot"; cd ${artisan_path} echo "\n" pwd php artisan schedule:run 但 阅读全文
posted @ 2023-07-13 15:10 路边两盏灯 阅读(79) 评论(0) 推荐(0)
摘要: 问题描述 在使用Azure Service Bus的时候,我们可以根据Queue中目前存在的消息数来判断当前消息是否有积压的情况。 但是,在Event Hub中,因为所有消息都会被存留到预先设定的保留时间(默认是7天), 所以无法通过消息数来判断当前的消息是否有积压或者是有多余重复消费。 当消费端出 阅读全文
posted @ 2023-07-06 21:39 路边两盏灯 阅读(228) 评论(0) 推荐(1)
摘要: [500 The page cannot be displayed because an internal server error has occurred.] [scriptProcessor could not be found in "fastCGI" application configuration] [EXECUTE|500|0|0x585|CONFIG_SUCCESS|PHP74_via_FastCGI|10.10.0.221|\\10.1.160.10\volume-30-default\&ApiApp=0] [C:\program Files\PHP\v7.4\php-cgi.exe] 阅读全文
posted @ 2023-07-05 21:03 路边两盏灯 阅读(263) 评论(0) 推荐(0)
摘要: Error : Web deployment task failed. (Connected to the remote computer ("javatest02.scm.chinacloudsites.cn") using the Web Management Service, but could not authorize. Make sure that you are using the correct user name and password, that the site you are connecting to exists, and that the credentials represent a user who has permissions to access the site. Learn more at: https://go.microsoft.com/fwlink/?LinkId=221672#ERROR_USER_UNAUTHORIZED.) 阅读全文
posted @ 2023-07-04 19:49 路边两盏灯 阅读(214) 评论(0) 推荐(1)
摘要: 问题描述 使用Azure Storag Blob REST API上传文件,用SharedKey作为Authorization出现403错误。 错误消息 b'\xef\xbb\xbf<?xml version="1.0" encoding="utf-8"?><Error><Code>Authenti 阅读全文
posted @ 2023-06-29 21:18 路边两盏灯 阅读(309) 评论(0) 推荐(1)
摘要: 【问题一】微软云上的虚拟机,不论是Windows系统or Linux 系统,系统的安全补丁是由微软云平台 打上补丁进行修复,还是使用虚拟机的用户手动更新修复呢? 【答】这些补丁不会由平台来直接操作更新上去,而是由用户根据情况选择性安装修复。 【问题二】安全更新中提及的漏洞,是否会影响PaaS服务? 阅读全文
posted @ 2023-06-28 17:38 路边两盏灯 阅读(51) 评论(0) 推荐(0)
摘要: 问题描述 Azure Event Hubs -- Kafka 生产者发送消息存在延迟接收和丢失问题, 在客户端的日志中发现如下异常: 2023-06-05 02:00:20.467 [kafka-producer-thread | producer-1] ERROR com.deloitte.com 阅读全文
posted @ 2023-06-26 20:49 路边两盏灯 阅读(229) 评论(0) 推荐(0)
摘要: 问题描述 使用Azure Media Service 制作视频点播服务,在客户端使用 Azure Media Player 播放器在 Edge 浏览器中播放视频时候遇见无法播放的问题: 错误信息: The video playback was aborted due to a corruption 阅读全文
posted @ 2023-06-25 19:40 路边两盏灯 阅读(586) 评论(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 路边两盏灯 阅读(329) 评论(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 路边两盏灯 阅读(319) 评论(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 路边两盏灯 阅读(155) 评论(0) 推荐(0)
摘要: 问题描述 在Azure Data Factory (数据工厂)中,调用同在Azure中的Function App函数,却出现403 - Forbidden错误。 截图如下: 问题解答 访问Azure Function App遇见403 - Forbidden错误,这是因为Function App启用 阅读全文
posted @ 2023-06-13 19:31 路边两盏灯 阅读(61) 评论(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:33 路边两盏灯 阅读(289) 评论(0) 推荐(1)
摘要: 问题描述 使用Azure Event Hub服务,除了正常的生产,消费消息以外,如果想拿到Event Hub中存储的历史消息?有什么方法呢? 问题解答 获取 Event Hubs 存储的历史消息,首先需要确保消息进入Event Hub的时间处于保留期限(Retention Days)内,因为超过这个 阅读全文
posted @ 2023-06-08 20:06 路边两盏灯 阅读(52) 评论(0) 推荐(0)
摘要: 问题描述 在创建Azure App Service时,服务端的配置使用Java 8 + Tomcat 8.5。默认的根目录页面显示出App Service Tomcat版本信息,存在一定的安全隐患。 如何来避免这个问题呢? 问题解答 因为在初始创建App Service时,Azure会根据所选Sta 阅读全文
posted @ 2023-06-07 19:34 路边两盏灯 阅读(203) 评论(0) 推荐(0)
摘要: 问题描述 创建Azure Kubernetes Service服务后,需要升级AKS集群的 kubernetes version。在AKS页面的 Cluster configuration 页面中,选择新的版本 1.25.5,确认升级。等待50分钟左右,却等到了升级失败的消息: Failed to 阅读全文
posted @ 2023-06-06 19:32 路边两盏灯 阅读(280) 评论(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 路边两盏灯 阅读(125) 评论(0) 推荐(0)
摘要: 问题描述 哪些客户端 IP 正在向/从Azure Event Hub发送/接收事件?如何来查看Event Hub的生产者端,消费者端的IP地址呢? 问题解答 如果需要查看Event Hub 服务端的日志,可以在Azure门户上开启诊断日志来查看。默认情况下,我们并不能看见Event Hub的生产者, 阅读全文
posted @ 2023-05-29 17:04 路边两盏灯 阅读(58) 评论(0) 推荐(0)
摘要: 问题描述 Azure Media Service上传的视频资产,如何保证在Transfer编码后音频文件和视频文件不分成两个文件?保持在一个可以直接播放的MP4文件中呢? 问题解答 Azure Media Service上提供的 Build-in Transform 生成的资产中,音频与视频分别存储 阅读全文
posted @ 2023-05-25 20:22 路边两盏灯 阅读(37) 评论(0) 推荐(0)
摘要: 问题描述 Azure Event Hub支持 kafka,所以为了测试消息生产者所在环境与Azure Event Hub之间发送消息的性能如何,特别使用 kafka 官方测试生产者,消费者的性能工具 : kafka-producer-perf-test.bat kafka-consumer-perf 阅读全文
posted @ 2023-05-23 21:15 路边两盏灯 阅读(231) 评论(0) 推荐(0)
摘要: 问题描述 在Azure中创建逻辑应用(Logic App),有两种计划类型。一是消费型,另一种是标准型。 在消费型的Logic App Metrics页面中,我们可以看见Workflow的执行成功数指标和失败数指标。如: RunsCancelled 取消的运行数 Count 总计 已取消的工作流运行 阅读全文
posted @ 2023-05-22 20:21 路边两盏灯 阅读(64) 评论(0) 推荐(0)
摘要: 问题描述 Azure Service Bus 的门户操作页面上,是否可以批量删除其中的Topics呢? 问题解答 Azure Service Bus门户或Service Bus Explorer工具没有提供批量删除Topic的方法。但是可以自己写脚本删除,并且可以在删除的时候自定义过滤条件。 以Py 阅读全文
posted @ 2023-05-17 20:26 路边两盏灯 阅读(63) 评论(0) 推荐(1)
摘要: 问题描述 App Service上部署的Java应用,连接 Azure Database for MySQL 失败。错误信息:Create connection error, url: jdbc:mysql://....................... communications link 阅读全文
posted @ 2023-05-16 19:38 路边两盏灯 阅读(156) 评论(0) 推荐(0)
摘要: 问题描述 当使用Azure Redis服务时,需要把一个Redis服务的数据导入到另一个Redis上,因为Redis服务没有使用高级版,所以不支持直接导入/导出RDB文件。 以编程方式来读取数据并写入到新的Redis服务端,使用开源工具 Redis-Copy 却遇见了 6379 端口无法连接的问题。 阅读全文
posted @ 2023-05-15 21:43 路边两盏灯 阅读(317) 评论(0) 推荐(3)
摘要: 问题描述 在Azure门户上创建Transform Encoding时候,只能选择 Built-in Preset 编码方式(如:H265ContentAwareEncoding) 在创建编码任务时,除了在门户上可选的几种内置的编码格式外,还可以通过自定义的编码预设文件(Preset.json)对视 阅读全文
posted @ 2023-05-11 21:58 路边两盏灯 阅读(67) 评论(2) 推荐(0)
摘要: Azure.Identity.AuthenticationFailedException: 'ClientSecretCredential authentication failed: AADSTS90002: Tenant '********-****-****-****-************' not found. Check to make sure you have the correct tenant ID and are signing into the correct cloud. Check with your subscription administrator, this may happen if there are no active subscriptions for the tenant. 阅读全文
posted @ 2023-05-10 21:10 路边两盏灯 阅读(159) 评论(0) 推荐(2)
摘要: 问题描述 在Azure Blob的官方示例中,都是对文件进行上传到Blob操作,没有实现对已创建的Blob进行追加的操作。如果想要实现对一个文件的多次追加操作,每一次写入的时候,只传入新的内容? 问题解答 Azure Storage Blob 有三种类型: Block Blob, Append Bl 阅读全文
posted @ 2023-05-09 21:42 路边两盏灯 阅读(334) 评论(0) 推荐(1)
摘要: 问题描述 查看Java Storage SDK,想找一个 uploadWithResponse 的示例代码,但是通过全网搜索,结果没有任何有帮助的代码。使用最近ChatGPT来寻求答案,得到非常有格式的内容: 问:java azure storage account to use uploadWit 阅读全文
posted @ 2023-05-08 21:49 路边两盏灯 阅读(172) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 32 下一页