问题标签 [azureportal]
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 - 如何通过门户将端点映射添加到 Azure IaaS VM(新资源管理器)?
与经典 VM 模型相比,当前添加端点映射的指南过于复杂。
这是现在将公共端口简单地映射到内部端口的唯一方法吗? https://azure.microsoft.com/pt-pt/documentation/articles/load-balancer-arm-powershell/
azure - Azure AD for Office 365 does not show in new portal
In new Azure Portal i don't see any way to manage AD. Customer does not really have Azure AD subscription just Office 365. But i can see it in old Management, add APPS that work with AD and everything.
How can i do that in new Azure Portal?
Demonstrated on this screnshot using same account: https://dl.dropboxusercontent.com/u/16550256/azure%20vs%20azure.png
Everything I find on this matter regards the OLD azure management.
azure - 为 Azure 门户启用多重身份验证
是否可以启用多重身份验证以访问 Azure 门户https://portal.azure.com?
我知道 Azure 本身有一个 MFA 服务器资源,但我的理解是这是用于 Azure 托管的应用程序/资源。我最初想启用 MFA 以访问门户本身,然后再为 Azure 中的不同资源设置它。
azure - 如何设置登录新 Azure 门户后选择的默认目录?
对于我的 Azure 帐户,有 3 个关联的目录。登录后总是选择其中一个,所以我必须在每次登录后在右上角的菜单中切换到我喜欢的另一个。
如何将此默认设置更改为我的偏好?我的意思是,登录后我希望我的首选目录应该被选中,而不需要任何重复的额外操作。
(如果这可以通过 Azure PowerShell 关闭,我可以接受,唯一的要求是它必须影响我对新 Azure 门户的交互式登录:默认情况下应该选择我的首选目录。
azure-cloud-services - Azure 资源组中的站点 URL
有没有办法为 Azure 资源组获取/创建站点 URL(例如:abcdefg.cloudapp.net),就像 Azure 云服务中的一样?
azure - 是否可以从基于资源管理器的 Azure VM 创建克隆/映像?
我有一个基于资源管理器的工作虚拟机。(Ubuntu) 现在我以多种方式对其进行了自定义,并希望将来在创建新 VM 时将其作为启动模板。
基本上,我想从我的自定义 VM 中轻松创建一个新 VM,就像我最初通过 Azure 门户通过 bitnami 选择 LAMP VM 创建它一样。
请注意,我知道 Linux/Windows 配置/取消配置过程。事实上,我可以接受和使用机器没有被取消配置并简单地“克隆”的场景(如果这在基于资源管理器的 VM 中完全可能的话)
不幸的是,我发现的所有文章(甚至是 2016 年的“更新”文章)都是关于“经典”虚拟机的
所以这个问题是关于我怀疑非“经典”虚拟机是否有可能?
例如,对于我的经典 VM,Azure 门户上有一个捕获按钮,但我基于新资源管理器的 VM 没有捕获按钮。
我知道门户 GUI 中没有很多东西,所以我也可以使用 Azure Powershell 进行操作。
azure-powershell - How to include "Plan information" when creating ARM VM from a captured image using Powershell?
I have a ARM VM created from a Marketplace: bitnami LAMP (Ubuntu) I've successfully captured an image. During the capture I've saved the json template.
Using a template based on that I can successfully create new VMs via the portal's Template Deployment facility interactively. (so the captured image is OK). Please note: That json template do include plan information, see below
However my original goal is to create new ARM VMs based on the captured image using Powershell
All seems to work however in the last command New-AzureRmVM returns and error stating:
Creating a virtual machine from Marketplace image requires Plan information in the request.
Obviously this information is missing, but I can not find out how to add it.
Here is what I've tried:
- I've examined the $vm variable (what is the parameter of the New-AzureRmVM command) and its Plan property is empty. (as expected)
- I've searched for appropiate Add-AzureRmVm... commands with no success
- I've tried to set manually the Plan property and its subproperties in all caseing combinations: all thows error. (like $vm.Plan.Publisher="bitnami")
Actually the original capture's json template contains that Plan intomation:
Again, the captured image (the .vhd) what this script tries to use is confirmed OK, because with the very same captured image I can create new ARM VMs via the portal's Template Deployment facility.
I think the source is not too important this case (there are no error in it, just missing things, but that missing thing is clearly stated in the question) but I attach the source anyway... Optional reading.
azure - Azure WebJobs 和队列相关指标
我环顾了 Azure 门户并搜索了网络,但我一直无法找到答案。有没有办法,也许通过 api 或 powershell,来获取 webjobs 的指标?例如每个工作的平均运行时间?我还想找出 webjob 触发的消息的平均排队时间(尽管这可能是存储指标而不是 webjob 指标)。任何指针将不胜感激。