使用 Azure PowerShell 命令可创建一个空的云服务(经典)容器
重要
从 2024 年 9 月 1 日开始,已弃用所有客户的云服务(经典版)。 从 2024 年 10 月开始,Microsoft 将停止并关闭任何正在运行的现有部署,数据将永久性丢失。 新部署应使用基于 Azure 资源管理器的新型部署模型 Azure 云服务(外延支持)。
本文介绍如何使用 Azure PowerShell cmdlet 快速创建云服务容器。 请使用以下步骤:
从 Azure PowerShell 下载 页安装 Azure PowerShell cmdlet。
打开 PowerShell 命令提示符。
使用 Add-AzureAccount 登录。
注意
有关安装 Azure PowerShell cmdlet 和连接到 Azure 订阅的更多说明,请参阅如何安装和配置 Azure PowerShell。
使用 New-AzureService cmdlet 创建一个空的 Azure 云服务容器。
New-AzureService [-ServiceName] <String> [-AffinityGroup] <String> [[-Label] <String>] [[-Description] <String>] [[-ReverseDnsFqdn] <String>] [<CommonParameters>] New-AzureService [-ServiceName] <String> [-Location] <String> [[-Label] <String>] [[-Description] <String>] [[-ReverseDnsFqdn] <String>] [<CommonParameters>]
请按照本示例操作以调用 cmdlet:
New-AzureService -ServiceName "mytestcloudservice" -Location "China North" -Label "mytestcloudservice"
有关创建 Azure 云服务的详细信息,请运行:
Get-help New-AzureService
后续步骤
- 若要管理云服务部署,请参阅 Get-AzureService、Remove-AzureService 和 Set-AzureService 命令。 有关详细信息,请参阅如何配置云服务。
- 若要将云服务项目发布到 Azure,请参见已存档云服务存储库中的 PublishCloudService.ps1 代码示例。