创建存储帐户并将文件上传到存储帐户

问题描述 投票:0回答:1

要遵循的步骤:

-创建存储帐户:

az storageAccountKey1 show -n <mystorageaccount> -g user-<usename>

-获取存储帐户密钥

z storage account create --name <mystorageaccount> --resource-group user-<groupusename> --location eastus --sku Standard_ZRS --encryption-services blob
az storage account keys list -g <groupusename> -n <mystorageaccount>
export <storageAccountKey>=$(az storage account keys list --resource-group user-horntaglnfsn --account-name <mystorageaccount> --query "[0].value" | tr -d '"')
echo $<storageAccountKey>
output: first account key

-创建天蓝色文件共享

az storage share create --account-name <mystorageaccount> --account-key <storageAccountKey> --name shareNamebiplab --quota 1024 --output none

现在正在创建错误。

[请帮助我如何在此处创建文件共享。

azure command-line-interface azure-cli azure-storage-files
1个回答
0
投票
尝试将connectionstring更改为connectionStrings中的connectionstring应为大写。

所以您的命令将是:

© www.soinside.com 2019 - 2024. All rights reserved.