0

我使用 azure xplat 命令行工具和一些 bash 脚本来生成工作虚拟机,在它们上处理 CPU/内存绑定的计算工作负载,然后再次拆除它们。

我生成这样的机器:

azure vm create --location 'West Europe' --vm-size extralarge [...] b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB

到目前为止,这一切正常。查看我的即用即付订阅列表,我发现使用了相当多的异地冗余存储,即第二昂贵的存储选项。

如何调整我的设置以使用最便宜的 blob 存储选项(如果我没记错的话,“本地冗余”)?

半相关:我也很高兴其他关于如何通过这种工作负载省钱的技巧,即创建和使用最小的 Linux 映像(不是 30gb)可能会有所帮助?

4

2 回答 2

1

首先使用所需的设置创建存储帐户,例如禁用异地复制。例如,以下是在禁用异地复制的情况下在美国东部创建存储帐户的方法。

azure storage account create <your storage acct name> -l "East US" --disable-geoReplication

然后,为您的订阅设置存储帐户

azure storage account set <your storage acct name>

然后,使用 azure vm create 创建虚拟机。

于 2014-08-19T16:47:29.883 回答
0

不需要天蓝色存储帐户集。它用于设置/更新存储帐户的属性。没有将特定存储帐户设置为该订阅的默认帐户的概念。

以下是解释其用途的命令的帮助:

azure storage account set -h
help:    Update a storage account
help:
help:    Usage: storage account set [options] <name>
help:
help:    Options:
help:      -h, --help                       output usage information
help:      -v, --verbose                    use verbose output
help:      --json                           use json output
help:      -e, --label <label>              the storage account label
help:      -d, --description <description>  the storage account description
help:      --geoReplication                 indicates if the geo replication is enabled
help:      --disable-geoReplication         indicates if the geo replication is disabled
help:      -s, --subscription <id>          the subscription id
于 2014-09-29T16:50:39.177 回答