- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以帮忙吗?我是 Azure 新手,仅从 Web 界面启动 VM。现在我想使用 CLI 启动一些虚拟机,但无法使用以下命令在命令行上启动虚拟机:
azure vm create --vm-size extrasmall --ssh --ssh-cert ~/.ssh/Talentwunder2.pem --no-ssh-password --location“美国中南部”tw-cloud- 2 tw-image-v1-20140808-441581 azureuser
我在 shell 上得到以下输出(顺便说一句,MacOS):
info: Executing command vm create
+ Looking up image tw-image-v1-20140808-441581
+ Looking up cloud service
info: cloud service tw-cloud-2 not found.
+ Creating cloud service
+ Configuring certificate
+ Creating VM
+ Deleting cloud service
error: No Configuration Set should be specified while using a VMImage with a specialized OS Disk Configuration.
info: Error information has been recorded to azure.err
error: vm create command failed
并且 azure.err 有以下消息:
Wed Aug 27 2014 23:18:25 GMT+0200 (CEST):
{ [Error: No Configuration Set should be specified while using a VMImage with a specialized OS Disk Configuration.]
code: 'BadRequest',
statusCode: 400,
requestId: 'c398d47fdc71039a9ca1a3a1bb197fd4' }
Error: No Configuration Set should be specified while using a VMImage with a specialized OS Disk Configuration.
at Function.ServiceClient._normalizeError (/usr/local/lib/node_modules/azure-cli/node_modules/azure-common/lib/services/serviceclient.js:785:23)
at /usr/local/lib/node_modules/azure-cli/node_modules/azure-common/lib/services/filters/errorhandlingfilter.js:44:29
at Request._callback (/usr/local/lib/node_modules/azure-cli/node_modules/azure-common/lib/http/request-pipeline.js:109:14)
at Request.self.callback (/usr/local/lib/node_modules/azure-cli/node_modules/request/request.js:129:22)
at Request.EventEmitter.emit (events.js:98:17)
at Request.<anonymous> (/usr/local/lib/node_modules/azure-cli/node_modules/request/request.js:873:14)
at Request.EventEmitter.emit (events.js:117:20)
at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/azure-cli/node_modules/request/request.js:824:12)
at IncomingMessage.EventEmitter.emit (events.js:117:20)
at _stream_readable.js:920:16
我没有收到错误消息,Google 没有帮助,我想我做了文档 ( http://azure.microsoft.com/de-de/documentation/articles/command-line-tools/ ) 想要的内容?有任何想法吗?
顺便说一句:我从正在运行的系统创建了 VM 镜像,并且可以在 Web 界面上启动机器,没有任何问题。
最佳答案
注意-我没有使用过您正在使用的命令行工具,因此这是一次心理故障排除的尝试。希望它有用。 :)
了解命令行工具在幕后正在对 Azure 的 Service Management REST API 进行调用会很有帮助。当试图理解错误时。类似“BadRequest”的失败可能来自服务,而不是您的工具集。
您正在尝试创建新的虚拟机,这意味着您的错误是从 Create Virtual Machine Deployment 返回的。 API。不幸的是,这是接口(interface)中更复杂的 API 之一,因为有很多方法可以启动虚拟机。幸运的是,错误消息给了我们关键线索:
No Configuration Set should be specified
while using a VMImage with a specialized
OS Disk Configuration.
我们在 API 文档中看到了几个术语:Configuration Set
和 VMImage
。
查看VMImage
信息,我们在文档中看到以下内容:可选。指定用于创建虚拟机的 VM 镜像的名称。如果使用此元素,则不会使用 ConfigurationSets 元素。有关详细信息,请参阅捕获 VM 镜像。
ConfigurationSet 被忽略,因为它们用于从 Sysprepped 镜像(或 Linux 等效镜像,不确定那是什么)配置新虚拟机。它们提供了一种在创建新虚拟机时指定用户帐户和密码的方法,例如
但是,VMImage 会被捕获且不会匿名。他们预计已经在镜像中内置了诸如用户名和密码之类的配置,因此不需要配置集。
令我有点惊讶的是,包含指定 VMImage 的配置集时会出现错误 - 我希望配置集会被忽略。然而,了解配置集中的内容可能有助于理解如何修改命令行以排除它。也许嗅探生成此错误的请求正文并将其与其余 api 进行比较将使解决此问题变得更加容易。 :)
祝你好运!
关于Azure错误: No Configuration Set should be specified while using a VMImage with a specialized OS Disk Configuration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25537421/
在 CSS 中,我从来没有真正理解为什么会发生这种情况,但每当我为某物分配 margin-top:50% 时,该元素就会被推到页面底部,几乎完全消失这一页。我假设 50% 时,该元素将位于页面的中间位
我想在 MongoDB 中使用 Grails2.5 中的“ElasticSearch”插件。我的“BuildConfig.groovy”文件是: grails.servlet.version = "3
我有一个我想要处理的 OHLC 股票报价数组。 Open High Low Close Volume 2003-01-05
我尝试创建一个PreparedStatement: stmt = conn.prepareStatement("SELECT POLBRP, POLTYP, POLNOP, INCPTP, TRMTH
我的目录结构如下: root libA CMakeLists.txt ClassA.cpp libB CMakeLists.txt ClassB.cpp s
我是 DBMS 的新手。我在每个用户的不同 csv 文件中都有车辆痕迹。格式:名称,时间戳,纬度,经度,randomId。例如:user0,2008-10-2309:42:25,441972.6942
我需要为我的应用程序打上烙印,并且只需要自定义少量图像,代码库是相同的,只是生成的常量很少。 由于aapt 允许指定许多资源目录,有没有办法在Eclipse .classpath 文件中指定res 目
我希望在我的应用程序中实现 JWT,因为我正在通过引用以下内容对其进行一些研发:https://stormpath.com/blog/jwt-java-create-verify .当我尝试通过提取声
我正在尝试通过设置限制获取数据并根据时间戳对数据进行排序,但在运行应用程序时崩溃并显示此错误消息: 查询无效。在指定顺序之前不得指定起点。 我不知道为什么会这样。如何解决? 我需要数据序列和排序。
我正在使用Elasticsearch和Tire进行Rails3项目。当我尝试运行Elastic-search时,安装它后,出现以下错误: The stack size specified is too
我创建了一个简单的函数来执行 Http PUT 请求 - public string checkIfUserExists(string userName) { var endP
Java 安全管理器允许通过定义如下子句来指定某些代码段的权限: ... grant codebase http://foo.bar.com/test.jar { permission java
这更像是一种验证。 在 Oracle/Java 教程页面上,例如 this , 我一直看到catch 旁边的“specify”就好像它是另一个语句在异常处理中具有一些功能。 据我所知,“catch o
本文整理了Java中org.batfish.specifier.ZoneNameRegexInterfaceSpecifier类的一些代码示例,展示了ZoneNameRegexInterfaceSpe
我正在尝试运行以下命令: ionic cordova run android --device 但我收到以下错误 BUILD FAILED in 3s (node:3956) Unha
在不包含 viewport 元标记的网页上,大多数移动浏览器会将页面上的部分或全部字体“提升”到大于 css 指定的大小。例如,在移动版 Safari 上,7px 的指定大小将提升为类似 12px 的
嗨,我不了解 keras fit_generator 文档。 我希望我的困惑是理性的。 有一个batch_size还有分批训练的概念。使用 model_fit() ,我指定一个 batch_size
我使用 IProviderSearchContext 在 Sitecore 8.1(Lucene 搜索)中搜索特定项目,并获得每个项目的两个版本(en、ar)。我的问题是:我是否必须为每个查询指定:
Except in a declaration of a constructor, destructor, or conversion function, at least one defining-
使用 GooglePageSpeed 分析在线商店(Shopware)导致每个图像上出现许多“未指定到期时间”的线条。 我想知道是因为网络服务器 (nginx) 在所有图像的响应中添加了 Last-M
我是一名优秀的程序员,十分优秀!