上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 51 下一页
摘要: 问题描述 在中国区的Azure App Service服务中,新创建的站点突然访问出现 “ This site can’t provide a secure connection,xxxxxx.chinacloudsites.cn sent an invalid response. ERR_SSL_ 阅读全文
posted @ 2021-12-10 19:58 路边两盏灯 阅读(5390) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure的 App Service / Function App 服务中,如果是在Windows系统中,可以通过添加Application Setting来转换为中国时间(WEBSITE_TIME_ZONE : China Standard Time)。 但是如果系统是Linux的话, 阅读全文
posted @ 2021-12-08 20:17 路边两盏灯 阅读(397) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure上部署一套VUE框架的单页面应用,有什么可以参考的文档呢? 问题回答 Azure官方上并没有VUE框架的实例代码,但是可以参考Node JS项目,来进行设置。 在 Azure 中创建 Node.js Web 应用:https://docs.azure.cn/zh-cn/app- 阅读全文
posted @ 2021-12-07 19:50 路边两盏灯 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Python 调用Azure AD中所注册的应用生成Token代码: import requests, json client_id = 'yourclientid' client_secret = 'yourclientsecret' tokenUrl = 'https://login. 阅读全文
posted @ 2021-12-04 16:40 路边两盏灯 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在一个storage account下面有很多folder,需要对不同的folder设置不同的权限给到不同的用户来访问使用,怎么样设定比较合理? 问题解答 一:可以使用SAS共享访问签名进行控制:可以通过生成SAS token和URL进行权限访问限制。 详情可以参考此文档:https:// 阅读全文
posted @ 2021-12-03 19:50 路边两盏灯 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 问题描述 根据文档 https://docs.azure.cn/zh-cn/api-management/api-management-howto-log-event-hubs , 可以将Azure API Management中的请求记录到Azure 事件中心。文档中有详细的步骤描述。但是在对于如 阅读全文
posted @ 2021-12-01 22:01 路边两盏灯 阅读(187) 评论(0) 推荐(1) 编辑
摘要: 问题描述 如何在Windows环境中,不安装第三方软件的情况下(使用Windows内置指令),如何抓取网络包呢?并且如何转换为Wireshark 格式呢? 操作步骤 1) 以管理员模式打开CMD,使用 netsh trace start capture=yes 命令开始抓取网络包,当需要停止时候,使 阅读全文
posted @ 2021-11-30 20:27 路边两盏灯 阅读(990) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure中创建Function App(函数应用), 用以运行Python代码(Python Version 3.7)。 通过VS Code创建一个HttpTrigger的Function,其中使用到了 psycopg2 模块,以便连接 Azure Database for Postg 阅读全文
posted @ 2021-11-26 20:08 路边两盏灯 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 问题描述 App Service使用jdbc连接MySQL服务,出现大量的 Communications link failure: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure T 阅读全文
posted @ 2021-11-25 20:01 路边两盏灯 阅读(245) 评论(0) 推荐(1) 编辑
摘要: 问题描述 使用Linux作为服务器运行Web App时,如何将 Storage Account 作为本地共享装载到 App Service for Linux / Container 中的应用呢? 问题解答 根据官网介绍, App Service For Linux / Container 是可以通 阅读全文
posted @ 2021-11-23 23:07 路边两盏灯 阅读(187) 评论(0) 推荐(1) 编辑
摘要: 问题描述 在Azure AD中注册一个Applicaiton后,对其进行授权,能够查看所有订阅的ReadOnly权限,然后,是否可以同通过Python代码,在完成Authorization后(使用Client ID, Client Secret),List能查看到所有的订阅信息(包含ID和名称等)? 阅读全文
posted @ 2021-11-22 22:45 路边两盏灯 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用 Apache Flink 连接支持 Apache Kafka的Azure Event Hub后,由于消费端的Consumer Group是动态创建,在门户页面和Service Bus Explorer工具中均无法查看,所以如何来查看 Kafka consumer group呢?可以参 阅读全文
posted @ 2021-11-18 20:59 路边两盏灯 阅读(211) 评论(0) 推荐(1) 编辑
摘要: 问题描述 使用 Azure Cache for Redis 服务,在两个Redis服务之间进行数据导入和导出测试。在Redis中原本有7G的数据值,但是导出时候发现文件大小仅仅只有30MB左右,这个压缩比这么大吗? 然后把导出文件导入到第二个Redis服务中,数量大小也只有500MB左右,问题是:由 阅读全文
posted @ 2021-11-15 20:52 路边两盏灯 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 问题描述 PowerShell 脚本调用Azure REST API, 但是所有的API都需要进行权限验证。要在请求的Header部分带上Authorization参数,并用来对List Resource Group接口进行授权,然后显示Resource Group的Name,Location,和I 阅读全文
posted @ 2021-11-14 20:59 路边两盏灯 阅读(249) 评论(1) 推荐(0) 编辑
摘要: 问题描述 在App Service中,可以非常容易的启动Application Insights服务。默认情况中,在Application Insights中查看信息时候,其中的对象名称默认为App Service的URL。非常长,不便于查看。那如何修改为自定义的名称呢?如下图: 解题答案 在App 阅读全文
posted @ 2021-11-11 21:03 路边两盏灯 阅读(50) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 51 下一页