问题标签 [azure-cloud-services]

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.

0 投票
1 回答
51 浏览

azure - 多租户应用新版本迁移

我们正在 Azure 上开发一个多租户 Web 应用程序。当我们发布新版本时,我们希望将其部署到新服务器上,并逐渐将客户端从旧版本迁移到新版本。

我们不希望为我们的客户更改 URL。相反,我们希望在我们的用户表中查找它们并根据它们设置的版本将它们重定向到适当的服务器。

做这个的最好方式是什么?

看来我们至少需要 3 台服务器:一台接收请求并查找用户的服务器,一台运行新版本的服务器和一台运行旧版本的服务器。这是正确的模型吗?是否有任何工具可以做到这一点?服务器会扩展吗?

我们使用的是 Azure 云服务,而不是 Azure 网站。

0 投票
2 回答
510 浏览

azure - 根据构建配置禁用/启用 Azure 启动任务

我想根据构建配置或服务配置启用或禁用启动任务。我希望实现的是我可以在我们的测试环境中禁用 New Relic,但为舞台和生产环境启用启动任务。那可能吗?

0 投票
1 回答
627 浏览

c# - 为什么在使用 Windows Azure 模拟器时 Windows 身份验证会失败?

我创建了一个Cloud Service项目,其中包含一个MVC Applicationin aWeb Role和一个Worker Role. 在 MVC 项目中,我正在使用Windows Authentication......并且某些字段是根据被授权的用户进行管理的(没什么大不了的)。

当我将 MVC 项目“设置为启动项目”时,我Windows Identity Principal的表现很好......并且一切都按预期显示和工作(这很好)。

然后,是时候进行和调试Worker Role. 为此,我必须Windows Azure Emulator通过选择“设置为启动项目”来运行Cloud Service项目本身(然后按 F5)。这样做会Cloud Service触发Windows Azure Emulator.

但是,当我这样做时,IsAuthenticated属性为假……我所有的 HTML 元素都消失了。

问题(S):
- 为什么在Windows Azure Emulator本地运行会阻止Windows Authentication
- 如果我需要“设置”模拟器......如何?


部分安全代码:
这里没什么特别的......

网络配置的一部分:
这里没有什么特别的......

0 投票
1 回答
27 浏览

azure - 如何知道我的虚拟机为何重新启动

我在 Azure 上有一个包含三个实例的云服务。仅出于调试目的,我想知道 Azure 引擎自动重启我的实例的原因。可能吗?换句话说,是否有这些自动化过程的日志?

提前感谢您的帮助。

0 投票
5 回答
2578 浏览

visual-studio - Azure“未找到部署”错误消息

我去部署现有的云服务(暂存)并收到以下消息:

“错误:未找到部署。Http 状态代码:未找到”

有谁知道这意味着什么?

我正在查看云服务,它确实存在。

更新:
一直使用与之前(成功)工作相同的部署方法。但是,我只需在 Visual Studio 2013 中右键单击云服务。在 Windows Azure 发布摘要中,我设置为:正确的云服务名称、暂存、发布……然后按发布。没什么特别的……这就是为什么我很困惑

0 投票
0 回答
357 浏览

asp.net - PhantomJS Rasterize PDF on Azure 云服务错误

我在我的 .Net 4.5 应用程序中使用 PhantomJS 附带的 rasterize.js 脚本的修改版本来创建网页的 PDF 文件,并且在 PhantomJS 中遇到以下错误(错误重复两次,如下所示):

它在本地和 Azure VM 中完美运行,但不能作为 Azure 云服务上的 Web 角色。是否需要进行配置才能使其正常工作?我知道它需要 GDI 并且 Azure 云服务应该支持它,但是我还缺少什么吗?

0 投票
0 回答
208 浏览

java - 如何为使用 Azure 门户创建的 Windows Azure VMRoles 启用诊断日志

我已经直接在 Azure 门户上创建了虚拟机,现在我正在尝试启用诊断日志以监控 CPU 使用情况。但我无法在云服务中看到配置选项卡。正如我所观察到的,如果我使用 Visual Studio 部署 VM,那么它会显示用于配置云服务和诊断日志的标签。

我还尝试使用 REST API“获取包”获取服务定义和云服务配置, http: //msdn.microsoft.com/en-us/library/azure/jj154121.aspx但它说没有服务定义失败退出。

如何启用诊断日志,或者有什么方法可以使用 REST API 或 Java API 获取 CPU 使用率和其他矩阵?

0 投票
1 回答
295 浏览

azure - 为什么在 Azure 云服务上重新配置远程设置时代码会恢复?

我有一个使用Sitefinity Thunder在Windows Azure 云服务上部署的Sitefinity 项目。但问题是我使用VM 实例手动更改了一些文件(注意:此用户名用于其他云服务的其他配置)。几天后,当我尝试连接到VM 实例时,出现以下错误:

但是,在那之前,该网站在 Azure 云服务上运行良好。然后我重新配置了虚拟机实例并下载了。但是后来云服务上的代码被还原了。此外,针对该实例在 IIS 上所做的更改也已恢复。

我搜索了很多为什么会发生这种情况,但没有任何正当理由。请任何人在这里解释一下,我怎样才能避免这种情况。另外,如何仅在 Azure 云服务上部署更改的文件。这样代码在任何情况下都不会恢复。

编辑:

我的意思是重新配置的 VM 实例是以下步骤: 1) 我选择云服务,选择配置选项卡,然后单击底部给出的删除按钮。请。见下图。 在此处输入图像描述

2)然后我填写值并单击[勾选]图标。请。见下图。 在此处输入图像描述

3) 然后,完成重新配置后,我选择实例选项卡,然后单击 [连接] 下载 RDP 文件以连接到云服务的 VM 实例。请。见下图。 在此处输入图像描述

谢谢

0 投票
1 回答
38 浏览

asp.net - Find changes in cloud service configuration screen

I've cloud service and if you go to the azure portal and click on cloud services ->choose service -> click on configure . you see the setting which you put in VS cloud service mvc project like following:

This configure settings was configured and deployod from the cloud service in VS when you click on cloud service click on your MVC project and click on specific role and than you have screen of cofigure /settings /endpoints etc ,and you put the setting like key val in the setting view.

when you deploy your service to azure you see it in the config section in the portal like I mentiond abve...

User can change this config setting values in the portal I want to track it,If I go the the managment services I can see all the changes in the azure cloud service (caller id ,operation ID etc and there is option to see detailes but this is not sufficent) ,I want to see which property was changed and the old values, How should I do that ?

I've read the following but not find how to do that...

http://msdn.microsoft.com/library/azure/dn186185.aspx

I guess I need to do it by code so any example will be very helpful!

0 投票
1 回答
41 浏览

c# - 为云服务中的缩放角色管理机器 AD 帐户

我们将与我们的云服务角色关联的虚拟机加入域。当然,加入域的过程会强制重启。而且,当扩大规模时,这很好。但是,在缩小规模时,我们希望自动从域中删除机器 AD 帐户。我看不到在 Azure 自动缩放中执行“之前或之后”事件的方法。当前的处方是覆盖角色 OnStop 事件。但是,无法判断这是简单的重新启动还是实际的释放。当然,我自己也可以侵入一个进程。

但是,还有其他人在这样做吗?你如何优雅地做到这一点?