Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 2.21 KB

howto-restart-server-powershell.md

File metadata and controls

53 lines (38 loc) · 2.21 KB
title description author ms.author ms.service ms.topic ms.date
Restart server - Azure PowerShell - Azure Database for MariaDB
This article describes how you can restart an Azure Database for MariaDB server using PowerShell.
ajlam
andrela
mariadb
conceptual
5/26/2020

Restart Azure Database for MariaDB server using PowerShell

This topic describes how you can restart an Azure Database for MariaDB server. You may need to restart your server for maintenance reasons, which causes a short outage during the operation.

The server restart is blocked if the service is busy. For example, the service may be processing a previously requested operation such as scaling vCores.

The amount of time required to complete a restart depends on the MariaDB recovery process. To reduce the restart time, we recommend you minimize the amount of activity occurring on the server before the restart.

Prerequisites

To complete this how-to guide, you need:

Important

While the Az.MariaDb PowerShell module is in preview, you must install it separately from the Az PowerShell module using the following command: Install-Module -Name Az.MariaDb -AllowPrerelease. Once the Az.MariaDb PowerShell module is generally available, it becomes part of future Az PowerShell module releases and available natively from within Azure Cloud Shell.

If you choose to use PowerShell locally, connect to your Azure account using the Connect-AzAccount cmdlet.

[!INCLUDE cloud-shell-try-it.md]

Restart the server

Restart the server with the following command:

Restart-AzMariaDbServer -Name mydemoserver -ResourceGroupName myresourcegroup

Next steps

[!div class="nextstepaction"] Create an Azure Database for MariaDB server using PowerShell