作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是尝试通过 shell 脚本执行一组 AZ 命令。
az account set --subscription "test-subscription"
如果我在 az login
之后直接在 powershell 上运行该命令,它工作正常。
但是如果我通过 shell 脚本运行相同的命令,则会抛出 AzureCloud 中不存在订阅的错误。
更新:
az account show 命令的输出
{
"environmentName": "AzureCloud",
"homeTenantId": "xxx-xx-xx-x",
"id": "xx-xx-xx-x-xx",
"isDefault": true,
"managedByTenants": [
{
"tenantId": "xx-xx-xxx-xx-xx"
}
],
"name": "subscription-name",
"state": "Enabled",
"tenantId": "xx-xx-xx-xxx",
"user": {
"name": "f<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a3cd8dcfcde3dbdb8dc0ccce" rel="noreferrer noopener nofollow">[email protected]</a>",
"type": "user"
}
}
最佳答案
登录时尝试指定 --tenant
为订阅的租户 ID。
az login --tenant '<tenant-id>'
然后使用
az account set --subscription '<subscription-id>'
关于Azure 设置订阅命令通过 shell 脚本失败,但无需 shell 脚本即可工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62852293/
这实际上是我问的问题的一部分here ,该问题没有得到答复,最终被标记为重复。 问题:我只需使用 @Autowired 注释即可使用 JavaMailSender。我没有通过任何配置类公开它。 @Co
我是一名优秀的程序员,十分优秀!