重启/停止/启动 Azure Database for MySQL 灵活服务器实例

适用于: Azure Database for MySQL - 灵活服务器

本文介绍如何使用 Azure CLI 执行重启、启动和停止 Azure Database for MySQL 灵活服务器实例。

先决条件

  • 具有活动订阅的 Azure 帐户。

    如果没有 Azure 订阅,可在开始前创建一个 Azure 试用帐户

  • 安装 Azure CLI 或将其升级到最新版本。 请参阅安装 Azure CLI

  • 使用 az login 命令登录到 Azure 帐户。 请注意 id 属性,该属性指的是 Azure 帐户的订阅 ID。

    az login
    
  • 如果有多个订阅,请选择要使用 az account set 命令在其中创建服务器的相应订阅。 `

    az account set --subscription <subscription id>
    
  • 如果尚未使用 az mysql flexible-server create 命令创建 Azure Database for MySQL 灵活服务器实例,请创建一个。

    az mysql flexible-server create --resource-group myresourcegroup --name myservername --location chinaeast2
    

停止正在运行的服务器

若要停止服务器,请运行 az mysql flexible-server stop 命令。 如果使用本地上下文,则不需要提供任何参数。

用法:

az mysql flexible-server stop  [--name]
                               [--resource-group]
                               [--subscription]

不包含本地上下文的示例:

az mysql flexible-server stop  --resource-group --name myservername

包含本地上下文的示例

az mysql flexible-server stop

启动已停止的服务器

若要启动服务器,请运行 az mysql flexible-server start 命令。 如果使用本地上下文,则不需要提供任何参数。

用法:

az mysql flexible-server start [--name]
                               [--resource-group]
                               [--subscription]

不包含本地上下文的示例:

az mysql flexible-server start  --resource-group --name myservername

包含本地上下文的示例

az mysql flexible-server start

重要

成功重启服务器后,所有管理操作都立即可用于该 Azure Database for MySQL 灵活服务器实例了。

重启服务器

若要重启服务器,请运行 az mysql flexible-server restart 命令。 如果使用本地上下文,则不需要提供任何参数。

注意

如果用户重启服务器是自定义角色的一部分,则用户应在服务器上具有写入权限。

用法:

az mysql flexible-server restart [--name]
                                 [--resource-group]
                                 [--subscription]

不包含本地上下文的示例:

az mysql flexible-server restart  --resource-group --name myservername

包含本地上下文的示例

az mysql flexible-server restart

重要

成功重启服务器后,所有管理操作都立即可用于该 Azure Database for MySQL 灵活服务器实例了。

后续步骤