问题标签 [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 - 访问 VM 映像中的页面而不是 VM 角色?
我将带有 Sharepoint 2010 的 VM 映像部署到 Azure,创建了 VM 角色托管服务来访问它。我应该为我的 VM 映像中的访问页面提供什么 URL,而不是 VM 角色。默认情况下,它为 VM 角色提供一个 URL,该 URL 仅打开 IIS 页面,但我的实际应用程序安装在 VM 映像中。
azure - Windows Azure VM 角色上传
此问题与 Azure VM 角色有关。正如我在一些博客中所读到的,要托管 VM 角色,我们需要创建一个安装了 Windows Server 2008 r2 的虚拟机映像 (VHD)。
1.) 那么 VHD 文件的大小(大约)是多少?
2.) 我想它肯定会以 GB 为单位。所以可以用任何其他方法来避免它,以便我们可以动态创建它,我的意思是在云环境本身中。这样就避免了上传这么大的文件。
azure - 在 Azure 中平衡虚拟机
对于我的项目,我必须在 azure 中部署两个(或更多距离)VM 实例。我希望一开始只激活第一个实例,然后在一些人“访问”(例如 2000)之后,如果 2001 人来激活第二个 VM 实例。我必须做什么才能让这个属性工作。我希望你能帮助我解决这个问题!最好的祝福
azure - Microsoft Lync 会在 Windows Azure 虚拟机角色上运行吗?
Microsoft Lync 能否在运行 Windows 的 Windows Azure 虚拟机角色上运行? Azure 现在支持持久虚拟机。
azure - Azure VM 意外重启
这是一个与辅助角色托管 VM 有关的问题。我有一个简单的工人角色,它跨越了它内部的一个进程。产生的进程是 32 位编译的 TCPServer 应用程序。Worker 角色中定义了一个端点,TCPserver 绑定到 Worker 角色的端点。因此,当我连接到我的工作角色端点并发送一些东西时,TCPserver 会接收它,处理它会返回一些东西。所以这里暴露给外界的worker角色的端点,在内部连接到TCPserver。
string port = RoleEnvironment.CurrentRoleInstance.InstanceEndpoints[""TCPsocket].IPEndpoint.Port.ToString();
它工作正常。但突然塞弗停下来回应。当我签入门户时,VM 角色会自动重新启动。但它从未成功。它正在显示Role Initializing..
状态。手动停止和启动也不起作用。我重新部署了相同的包,没有对代码进行任何更改。这次部署本身失败了。
Warning: All role instances have stopped
- There was no endpoint listening at https://management.core.windows.net/<SubscriptionID>/services/hostedservices/TCPServer/deploymentslots/Production that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
但过了一段时间我再次尝试部署,它工作正常。谁能告诉我会有什么问题?
更新:
powershell - 在 Azure VMRole 上公开端口
将项目发布到 Azure 后,我们可以在 Azure VMRole 上公开端口吗?可能使用 Azure Powershell cmdlet 或其他方式。
目前,我正在删除 VMRole 并在我的项目(Visual Studio Azure 项目)上添加新的端点并重新发布它。
azure - Windows Server 2008 上的 sysprep 失败
在部署 Azure VM 角色之前,我们需要执行
但在我的情况下,sysprep 失败,日志文件 %windir%\system32\sysprep\Panther\setuperr.txt 说:
我并不总是想创建一个新图像。有什么解决办法吗?我按照此处MS 支持中的说明进行操作并尝试:
那没起效。
在某些情况下,我需要从 azure 中删除 VM 映像并重新部署并进行更多更改。因此 sysprep 几乎每周必须运行两次。
powershell - Copy folder from remote machine (Azure) to remote machine
I have two machines say Machine-A: An azure vm role on cloud. Machine-B: A machine on my network domain.
I can remote login to both MachineA and MachineB (using RDP) and copy say a folder 'temp' from location \MachineA.cloudapp.net\C$\temp to \MachineB\C$\
How do I achieve this programmatically, preferrably through powershell script?
I tried:
Where RemoteMachine is:
It fails with logon failure, though I use the same credentials for RDP. I have another doubt, even if the login is possible, then how will MachineA will know about MachineB?
Probably I am missing something simple and direct!
load-balancing - 我们什么时候可以说两个 Azure 虚拟机是负载平衡的
我对 Azure 中的负载平衡 VM 有一些疑问。
当我将虚拟机添加到现有部署(已经在运行的虚拟机)时,它会为添加的虚拟机分配相同的 dns 名称,但没有为虚拟机分配虚拟 IP。但端口显示负载平衡虚拟机。
java - 如何为每个 Windows Azure 虚拟机操作系统设置一些唯一标识符
我有一些使用相同配置运行的虚拟机。在这些虚拟机上,我安装了我的应用程序。
我想在我的 VM 中设置一些自定义唯一标识符,以便我知道如果特定(来自我的应用程序)请求来自该请求来自哪个 VM(或者该应用程序在哪个 VM 中运行)。由于相同的应用程序在所有 VM 中运行,因此为了区分每个请求,我想在创建虚拟机时设置一些唯一的自定义标识符。
我想在创建虚拟机时设置一些系统属性/环境变量。
我正在使用 Windows Azure Rest API 和 Java 在 Windows Azure 门户上创建和管理虚拟机。我想通过使用 Java 编程语言来实现这一点。
如果您有相同的信息,请告诉我。