问题标签 [azure-vm-role]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
azure - powershell azure 查找经典 vm 的自动缩放设置
我有很多带有经典 VM 的经典 Azure 服务,有些具有自动缩放设置,有些则没有。有没有办法通过 powershell 我可以找出经典的 Azure 服务是否设置了 AutoScale。看 Get-AzureService 和 Get-AzureVM 好像没有这个信息
azure - 是否可以将 Azure 经典 VM 动态 IP (VIP) 转换为静态 IP (VIP)?
我有一个经典的 Azure VM,其当前的公共 ip 是动态的。我希望这个相同的 ip 转换为静态。可能吗?如果是,如何?
azure - 可用性集可以与规模集一起使用,或者规模集就足够了
我是 azure 的新手,正在学习在 Azure 中设计应用程序。
这个问题对某人来说可能太天真了,但我真的很困惑。
当我们有规模集或规模集足以实现高可用性和自动扩展时,是否还需要可用性集?
我知道规模集和可用性集都有故障域和更新域以及在其中配置的虚拟机,而且我也知道两者之间的差异,但问题是两者都是架构模式还是架构方面的真正组件?
powershell - 尝试连接到目标计算机时,VSTS AzureFileCopy 权限被拒绝
尝试从 VSTS 版本设置一个简单的 AzureVMFileCopy 任务。我已经完成了以下步骤:
- 已执行 Enable-PSRemoting
- 使用自签名证书设置 WinRM 侦听器并通过 HTTPS 为 WInRM 打开端口 5986
- 配置入站防火墙规则以允许端口 5986 和 5985 上的流量。
- 在 VSTS 任务中,尝试使用不同的约定提供用户名 - 域/用户名、.\用户名、用户名
- 在 VSTS 任务中,启用复制先决条件。
- 将 VM 上的 VSTS 代理配置为以“交互模式”运行并使用管理员用户帐户。已尝试使用服务帐户以及相同的管理员帐户进行配置。
- 有趣的是,文件被复制到 VSTS Agent _work 文件夹中,但最终复制到目标文件夹给出“访问被拒绝”。
- 已尝试使用 Enter-PSSession 验证连接,但这也给出了相同的错误。
这是我得到的例外:
System.Management.Automation.Remoting.PSRemotingTransportException:连接到远程服务器 devocxdbvm.westeurope.cloudapp.azure.com 失败并显示以下错误消息:访问被拒绝
我可能缺少任何基本元素吗?
azure - 为什么我们需要 azure VM 中的扩展?
当我们可以手动连接到远程桌面并安装我们想要的软件时,为什么我们需要扩展?自定义脚本扩展和 Desired State 配置的工作方式相同。它们运行相同的 powershell 脚本。为什么我们需要许多基本上做同样事情的扩展。请给我一个想法。
python - Azure Python SDK Authentication Error
I am trying to stop a virtual machine in the azure cloud using the azure-python-sdk. I am following this page https://github.com/Azure-Samples/virtual-machines-python-manage and I have created an Azure active directory application by following this link, https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-create-service-principal-portal.
As a first step I am trying to authenticate using a call to ServicePrincipalCredentials passing client_id, secret, and tenant, but the connection throws the following error, 'Keyring cache token has failed: (1783, 'CredWrite', 'The stub received bad data')'
The application has a Virtual Machine Contributor permission setup. Is this a permission issue?