如何使用Linux命令行工具(SDK)为Azure创建WebRole

时间:2012-06-21 19:41:47

标签: azure

我正在研究Ubuntu并安装了适用于Linux的Azure SDK并使其正常运行。使用Linux SDK如何为node.js服务添加Azure WebRole。

我指的是以下教程,但它只讨论了如何在Windows上使用cmdlet创建WebRole

Node.js Cloud Service

还查看了解释Linux / Mac的Azure命令行的以下链接,但我无法找到使用linux SDK创建WebRole的任何命令

Windows Azure command-line tool for Mac and Linux

2 个答案:

答案 0 :(得分:0)

我检查了Linux CLI的源代码(service.js),看起来无法通过命令行创建托管服务(包含您的Web角色)。

唯一可用的操作是:

  • 列表
  • 删除[姓名]
  • 门户[名称]

答案 1 :(得分:0)

您无法使用“Windows Azure command-line tool for Mac and Linux”在Windows Azure中创建WEB角色(如果您的意思是Windows Azure Web角色),因为这些命令仅用于您的虚拟机Linux(以及Windows)。此外,上面的Node.js Cloud Service链接将在Windows Azure虚拟机中创建Node.js Web服务器,因此请确保您要在此处执行的操作。这在您的虚拟机中不起作用。

但是,如果您想创建一个Linux VM并在其上运行Web Server,那么它确保尽可能使用确切的命令,步骤如下:

  1. 创建Linux VM(上传您自己的或create VM directly by Linux Gallery Image
  2. Setup Putty to login to your Linux VM
  3. 使用info here通过Putty命令会话
  4. 安装您选择的Web服务器

    如果您在上述任何一个步骤中需要帮助,请告诉我。