你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
在 Linux 上安装 Azure PowerShell
Az PowerShell 模块是一个汇总模块。 安装它会下载正式发布的 Az PowerShell 模块并使其 cmdlet 可供使用。
本文介绍了如何在 Linux 上安装 Az PowerShell 模块。
先决条件
- 安装受支持的 PowerShell 版本 7 或更高版本
安装
打开终端或其他 shell 主机应用程序,并运行 pwsh
以启动 PowerShell。
使用 Install-Module cmdlet 安装 Az PowerShell 模块:
Install-Module -Name Az -Repository PSGallery -Force
更新 Az PowerShell 模块
使用 Update-Module 更新到最新版本的 Az PowerShell 模块:
Update-Module -Name Az -Force
使用 Update-Module
更新 Az PowerShell 模块不会从系统中删除旧版 Az PowerShell 模块。
卸载
若要从系统中删除 Az PowerShell 模块,请参阅卸载 Azure PowerShell 模块。
登录
若要开始使用 Az PowerShell 模块管理 Azure 资源,请启动 PowerShell 会话并运行 Connect-AzAccount
以登录到 Azure:
Connect-AzAccount
使用 Azure 帐户登录凭据登录到打开的浏览器窗口。
需要在每个新启动的 PowerShell 会话中重复此步骤。 若要了解如何跨 PowerShell 会话保持 Azure 登录状态,请参阅 Azure PowerShell 上下文对象。
疑难解答
有关 Az PowerShell 模块常见安装问题的解决方案,请参阅排查 Az PowerShell 模块的安装问题。
提供反馈
若要提交有关 Az PowerShell 模块的问题,请参阅:在 GitHub 上提问。
若要从 PowerShell 会话内提供反馈,请使用 Send-Feedback cmdlet。
后续步骤
若要详细了解如何使用 Az PowerShell 模块管理 Azure 资源,请参阅 Azure PowerShell 入门。