【Azure 应用服务】登录App Service 高级工具 Kudu站点的 Basic Auth 方式

问题描述

从Azure App Service的页面中,直接跳转到高级管理工具Kudu站点(https://<your app service name>.scm.chinacloudsites.cn/)时,可以自动使用AAD用户(即登录Azure门户的订阅账号),同时,也可以使用App Service的发布账号(如FTP账号和密码)登录,那如何来使用呢?

There are 2 authentication mechanisms.

  • Single sign on. This is only available and a default mechanism accessing via browser. User will be authenticated via AAD login.
  • Basic Auth using Deployment-credentials. This is default for non browser - such as curl. However, one can force this mode on browser by appending basicauth such as https://mysite.scm.chinacloudsites.cn/basicauth.

问题解答

在Azure App Service的门户中,可以在Deployment Center中,查看到Deployment Center中的Local Git/FTPS Credentials项中的UserName和Password。

 

在获取到上一步的 UserNamePassword 后,通过 kudu 站点的 basicauth 接口登录它。

具体的操作方式为:

在Kudu站点的url后加/basicauth,在弹出的验证窗口中的输入FTP credentials。

https://<your app service name>.scm.chinacloudsites.cn/basicauth

 

 

附录一:禁用Kudu的FTP Credential方式登录(/basicauth), 可以通过Azure Cli的语句,具体如下:

az resource update --resource-group <resource-group> --name scm --namespace Microsoft.Web
--resource-type basicPublishingCredentialsPolicies --parent sites/<site-name>
--set properties.allow=false

 

参考资料

Accessing the kudu servicehttps://github.com/projectkudu/kudu/wiki/Accessing-the-kudu-service#authentication--authorization

 

posted @   路边两盏灯  阅读(99)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
点击右上角即可分享
微信分享提示